Renaming and fixes.

This commit is contained in:
Gav Wood 2014-11-18 12:41:10 +01:00
parent 7b30c14ded
commit 3d7de75aaa

View File

@ -228,12 +228,12 @@ p.append(param3);
}
Json::Value eth_getMessages(const int& param1) throw (jsonrpc::JsonRpcException)
Json::Value eth_getLogs(const int& param1) throw (jsonrpc::JsonRpcException)
{
Json::Value p;
p.append(param1);
Json::Value result = this->client->CallMethod("eth_getMessages",p);
Json::Value result = this->client->CallMethod("eth_getLogs",p);
if (result.isArray())
return result;
else