diff options
author | Marek Kotewicz <marek.kotewicz@gmail.com> | 2015-03-06 03:32:18 +0800 |
---|---|---|
committer | Marek Kotewicz <marek.kotewicz@gmail.com> | 2015-03-06 03:32:18 +0800 |
commit | dcbd78735bb14db5520cabb413fe802bf50d9ff7 (patch) | |
tree | ee9496fd65100da0f44990055c5298a8a7a18dd4 /webthreestubclient.h | |
parent | 4e115bc671df4e361507da288c7438ef25bb9265 (diff) | |
download | dexon-solidity-dcbd78735bb14db5520cabb413fe802bf50d9ff7.tar dexon-solidity-dcbd78735bb14db5520cabb413fe802bf50d9ff7.tar.gz dexon-solidity-dcbd78735bb14db5520cabb413fe802bf50d9ff7.tar.bz2 dexon-solidity-dcbd78735bb14db5520cabb413fe802bf50d9ff7.tar.lz dexon-solidity-dcbd78735bb14db5520cabb413fe802bf50d9ff7.tar.xz dexon-solidity-dcbd78735bb14db5520cabb413fe802bf50d9ff7.tar.zst dexon-solidity-dcbd78735bb14db5520cabb413fe802bf50d9ff7.zip |
shh_changed -> shh_getFilterChanges
Diffstat (limited to 'webthreestubclient.h')
-rw-r--r-- | webthreestubclient.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/webthreestubclient.h b/webthreestubclient.h index 298f166a..8b1893a4 100644 --- a/webthreestubclient.h +++ b/webthreestubclient.h @@ -539,11 +539,11 @@ class WebThreeStubClient : public jsonrpc::Client else throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString()); } - Json::Value shh_changed(const std::string& param1) throw (jsonrpc::JsonRpcException) + Json::Value shh_getFilterChanges(const std::string& param1) throw (jsonrpc::JsonRpcException) { Json::Value p; p.append(param1); - Json::Value result = this->CallMethod("shh_changed",p); + Json::Value result = this->CallMethod("shh_getFilterChanges",p); if (result.isArray()) return result; else |