From dcbd78735bb14db5520cabb413fe802bf50d9ff7 Mon Sep 17 00:00:00 2001 From: Marek Kotewicz Date: Thu, 5 Mar 2015 20:32:18 +0100 Subject: [PATCH] shh_changed -> shh_getFilterChanges --- webthreestubclient.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/webthreestubclient.h b/webthreestubclient.h index 298f166a7..8b1893a41 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