mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
eth_queuedTransactions renamed to eth_fetchQueuedTransactions
This commit is contained in:
parent
68db4681c0
commit
192b18f05f
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user