diff --git a/Phantasma.Infrastructure/src/API/Controllers/TransactionController.cs b/Phantasma.Infrastructure/src/API/Controllers/TransactionController.cs index 03b67c49..23996a5c 100644 --- a/Phantasma.Infrastructure/src/API/Controllers/TransactionController.cs +++ b/Phantasma.Infrastructure/src/API/Controllers/TransactionController.cs @@ -224,13 +224,13 @@ public string SendRawTransaction([APIParameter("Serialized transaction bytes, in [HttpGet("InvokeRawScript")] public ScriptResult InvokeRawScript([APIParameter("Address or name of chain", "root")] string chainInput, [APIParameter("Serialized script bytes, in hexadecimal format", "0000000000")] string scriptData) { - if (NexusAPI.ReadOnlyMode) + /*if (NexusAPI.ReadOnlyMode) { return new ScriptResult { error = "Chain is in Read only mode" }; - } + }*/ var chain = NexusAPI.FindChainByInput(chainInput); try