From 543699df955fe73c912281d98bd316d413282dbd Mon Sep 17 00:00:00 2001 From: Marek Kotewicz Date: Thu, 6 Nov 2014 15:51:08 +0100 Subject: added eth_lll --- webthreestubclient.h | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/webthreestubclient.h b/webthreestubclient.h index 516fe790..179c620a 100644 --- a/webthreestubclient.h +++ b/webthreestubclient.h @@ -254,6 +254,19 @@ p.append(param3); } + std::string eth_lll(const std::string& param1) throw (jsonrpc::JsonRpcException) + { + Json::Value p; + p.append(param1); + + Json::Value result = this->client->CallMethod("eth_lll",p); + if (result.isString()) + return result.asString(); + else + throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString()); + + } + bool eth_mining() throw (jsonrpc::JsonRpcException) { Json::Value p; -- cgit v1.2.3