diff options
author | Gav Wood <i@gavwood.com> | 2015-04-20 04:59:57 +0800 |
---|---|---|
committer | Gav Wood <i@gavwood.com> | 2015-04-20 04:59:57 +0800 |
commit | 71012a83e86dac3a899780219a78f18acd1708c5 (patch) | |
tree | 59ab0a2f83b10cbeb38e6586de8ece16113a4f1c | |
parent | b6ff4451143db1f3cb5086d833d0022fc4f8c6b4 (diff) | |
download | dexon-solidity-71012a83e86dac3a899780219a78f18acd1708c5.tar.gz dexon-solidity-71012a83e86dac3a899780219a78f18acd1708c5.tar.zst dexon-solidity-71012a83e86dac3a899780219a78f18acd1708c5.zip |
Remote miner fixes.
-rw-r--r-- | webthreestubclient.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/webthreestubclient.h b/webthreestubclient.h index c1fdc341..fd71bfb5 100644 --- a/webthreestubclient.h +++ b/webthreestubclient.h @@ -434,11 +434,12 @@ class WebThreeStubClient : public jsonrpc::Client else throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString()); } - bool eth_submitWork(const std::string& param1, const std::string& param2) throw (jsonrpc::JsonRpcException) + bool eth_submitWork(const std::string& param1, const std::string& param2, const std::string& param3) throw (jsonrpc::JsonRpcException) { Json::Value p; p.append(param1); p.append(param2); + p.append(param3); Json::Value result = this->CallMethod("eth_submitWork",p); if (result.isBool()) return result.asBool(); |