diff options
-rw-r--r-- | webthreestubclient.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/webthreestubclient.h b/webthreestubclient.h index c3a392f5..911d757e 100644 --- a/webthreestubclient.h +++ b/webthreestubclient.h @@ -271,6 +271,19 @@ class WebThreeStubClient } + bool setDefaultBlock(const int& param1) throw (jsonrpc::JsonRpcException) + { + Json::Value p; + p.append(param1); + + Json::Value result = this->client->CallMethod("setDefaultBlock",p); + if (result.isBool()) + return result.asBool(); + else + throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString()); + + } + bool setListening(const bool& param1) throw (jsonrpc::JsonRpcException) { Json::Value p; |