|
@ -213,6 +213,16 @@ class WebThreeStubClient : public jsonrpc::Client |
|
|
else |
|
|
else |
|
|
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString()); |
|
|
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString()); |
|
|
} |
|
|
} |
|
|
|
|
|
bool eth_flush() throw (jsonrpc::JsonRpcException) |
|
|
|
|
|
{ |
|
|
|
|
|
Json::Value p; |
|
|
|
|
|
p = Json::nullValue; |
|
|
|
|
|
Json::Value result = this->CallMethod("eth_flush",p); |
|
|
|
|
|
if (result.isBool()) |
|
|
|
|
|
return result.asBool(); |
|
|
|
|
|
else |
|
|
|
|
|
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString()); |
|
|
|
|
|
} |
|
|
Json::Value eth_blockByHash(const std::string& param1) throw (jsonrpc::JsonRpcException) |
|
|
Json::Value eth_blockByHash(const std::string& param1) throw (jsonrpc::JsonRpcException) |
|
|
{ |
|
|
{ |
|
|
Json::Value p; |
|
|
Json::Value p; |
|
@ -347,13 +357,13 @@ class WebThreeStubClient : public jsonrpc::Client |
|
|
else |
|
|
else |
|
|
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString()); |
|
|
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString()); |
|
|
} |
|
|
} |
|
|
bool eth_changed(const int& param1) throw (jsonrpc::JsonRpcException) |
|
|
Json::Value eth_changed(const int& param1) throw (jsonrpc::JsonRpcException) |
|
|
{ |
|
|
{ |
|
|
Json::Value p; |
|
|
Json::Value p; |
|
|
p.append(param1); |
|
|
p.append(param1); |
|
|
Json::Value result = this->CallMethod("eth_changed",p); |
|
|
Json::Value result = this->CallMethod("eth_changed",p); |
|
|
if (result.isBool()) |
|
|
if (result.isArray()) |
|
|
return result.asBool(); |
|
|
return result; |
|
|
else |
|
|
else |
|
|
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString()); |
|
|
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString()); |
|
|
} |
|
|
} |
|
|