You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
curl -d '{"jsonrpc":"2.0","id":"1","method":"getrawmempool","params":[]}' http://127.0.0.1:20332
{"jsonrpc":"2.0","id":"1","error":{"code":-32601,"message":"Method not found","data":" at AntShares.Network.RPC.RpcServer.InternalCall(String method, JArray _params)\n at AntShares.Network.RPC.RpcServer.ProcessRequest(JObject request)"}}
The text was updated successfully, but these errors were encountered:
The published version of peer does not support this command "getrawmempool".
If you need to use it, you have to build the latest version master on windows or coreclr on linux.
* add support for struct:
like this:
public struct testS
{
public int a;
public string b;
public byte[] c;
}
public static int testStruct()
{
testS s = new testS();
s.a = 55;
return s.a;
}
* add instructions: SETITEM, NEWARRAY
similar issue as #7
The text was updated successfully, but these errors were encountered: