aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarek Kotewicz <marek.kotewicz@gmail.com>2015-03-11 16:42:23 +0800
committerMarek Kotewicz <marek.kotewicz@gmail.com>2015-03-11 16:42:23 +0800
commit192b18f05f9950c337ee6219778844af3064ed86 (patch)
tree4e86976b23d83638bbdf3ff1d964727e712dfad3
parent68db4681c0ff2a0c724512edac5abe1fb5341444 (diff)
downloaddexon-solidity-192b18f05f9950c337ee6219778844af3064ed86.tar.gz
dexon-solidity-192b18f05f9950c337ee6219778844af3064ed86.tar.zst
dexon-solidity-192b18f05f9950c337ee6219778844af3064ed86.zip
eth_queuedTransactions renamed to eth_fetchQueuedTransactions
-rw-r--r--webthreestubclient.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/webthreestubclient.h b/webthreestubclient.h
index 7f47fe78..baa0798a 100644
--- a/webthreestubclient.h
+++ b/webthreestubclient.h
@@ -436,11 +436,11 @@ class WebThreeStubClient : public jsonrpc::Client
else
throw jsonrpc::JsonRpcException(jsonrpc::Errors::ERROR_CLIENT_INVALID_RESPONSE, result.toStyledString());
}
- Json::Value eth_queuedTransactions(const std::string& param1) throw (jsonrpc::JsonRpcException)
+ Json::Value eth_fetchQueuedTransactions(const std::string& param1) throw (jsonrpc::JsonRpcException)
{
Json::Value p;
p.append(param1);
- Json::Value result = this->CallMethod("eth_queuedTransactions",p);
+ Json::Value result = this->CallMethod("eth_fetchQueuedTransactions",p);
if (result.isArray())
return result;
else