diff options
author | Gav Wood <i@gavwood.com> | 2014-11-18 19:41:10 +0800 |
---|---|---|
committer | Gav Wood <i@gavwood.com> | 2014-11-18 19:41:10 +0800 |
commit | 3d7de75aaa8e2dd80efec00f3357ec30e383f837 (patch) | |
tree | fcccbd1c7562397043e0f230a12c7f0f0ddb4d1a | |
parent | 7b30c14deddbcb63e618eb8bb5e1c024dc4fa758 (diff) | |
download | dexon-solidity-3d7de75aaa8e2dd80efec00f3357ec30e383f837.tar.gz dexon-solidity-3d7de75aaa8e2dd80efec00f3357ec30e383f837.tar.zst dexon-solidity-3d7de75aaa8e2dd80efec00f3357ec30e383f837.zip |
Renaming and fixes.
-rw-r--r-- | webthreestubclient.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/webthreestubclient.h b/webthreestubclient.h index 162c84b4..e69ae345 100644 --- a/webthreestubclient.h +++ b/webthreestubclient.h @@ -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 |