@@ -14,17 +14,17 @@ namespace dev {
1414 public:
1515 DebugFace ()
1616 {
17- this ->bindAndAddMethod (jsonrpc::Procedure (" debug_accountRangeAt " , jsonrpc::PARAMS_BY_POSITION, jsonrpc::JSON_OBJECT, " param1" ,jsonrpc::JSON_STRING," param2" ,jsonrpc::JSON_INTEGER," param3" ,jsonrpc::JSON_STRING," param4" ,jsonrpc::JSON_INTEGER, NULL ), &dev::rpc::DebugFace::debug_accountRangeAtI );
17+ this ->bindAndAddMethod (jsonrpc::Procedure (" debug_accountRange " , jsonrpc::PARAMS_BY_POSITION, jsonrpc::JSON_OBJECT, " param1" ,jsonrpc::JSON_STRING," param2" ,jsonrpc::JSON_INTEGER," param3" ,jsonrpc::JSON_STRING," param4" ,jsonrpc::JSON_INTEGER, NULL ), &dev::rpc::DebugFace::debug_accountRangeI );
1818 this ->bindAndAddMethod (jsonrpc::Procedure (" debug_traceTransaction" , jsonrpc::PARAMS_BY_POSITION, jsonrpc::JSON_OBJECT, " param1" ,jsonrpc::JSON_STRING," param2" ,jsonrpc::JSON_OBJECT, NULL ), &dev::rpc::DebugFace::debug_traceTransactionI);
1919 this ->bindAndAddMethod (jsonrpc::Procedure (" debug_storageRangeAt" , jsonrpc::PARAMS_BY_POSITION, jsonrpc::JSON_OBJECT, " param1" ,jsonrpc::JSON_STRING," param2" ,jsonrpc::JSON_INTEGER," param3" ,jsonrpc::JSON_STRING," param4" ,jsonrpc::JSON_STRING," param5" ,jsonrpc::JSON_INTEGER, NULL ), &dev::rpc::DebugFace::debug_storageRangeAtI);
2020 this ->bindAndAddMethod (jsonrpc::Procedure (" debug_preimage" , jsonrpc::PARAMS_BY_POSITION, jsonrpc::JSON_OBJECT, " param1" ,jsonrpc::JSON_STRING, NULL ), &dev::rpc::DebugFace::debug_preimageI);
2121 this ->bindAndAddMethod (jsonrpc::Procedure (" debug_traceBlockByNumber" , jsonrpc::PARAMS_BY_POSITION, jsonrpc::JSON_OBJECT, " param1" ,jsonrpc::JSON_INTEGER," param2" ,jsonrpc::JSON_OBJECT, NULL ), &dev::rpc::DebugFace::debug_traceBlockByNumberI);
2222 this ->bindAndAddMethod (jsonrpc::Procedure (" debug_traceBlockByHash" , jsonrpc::PARAMS_BY_POSITION, jsonrpc::JSON_OBJECT, " param1" ,jsonrpc::JSON_STRING," param2" ,jsonrpc::JSON_OBJECT, NULL ), &dev::rpc::DebugFace::debug_traceBlockByHashI);
2323 this ->bindAndAddMethod (jsonrpc::Procedure (" debug_traceCall" , jsonrpc::PARAMS_BY_POSITION, jsonrpc::JSON_OBJECT, " param1" ,jsonrpc::JSON_OBJECT," param2" ,jsonrpc::JSON_STRING," param3" ,jsonrpc::JSON_OBJECT, NULL ), &dev::rpc::DebugFace::debug_traceCallI);
2424 }
25- inline virtual void debug_accountRangeAtI (const Json::Value &request, Json::Value &response)
25+ inline virtual void debug_accountRangeI (const Json::Value &request, Json::Value &response)
2626 {
27- response = this ->debug_accountRangeAt (request[0u ].asString (), request[1u ].asInt (), request[2u ].asString (), request[3u ].asInt ());
27+ response = this ->debug_accountRange (request[0u ].asString (), request[1u ].asInt (), request[2u ].asString (), request[3u ].asInt ());
2828 }
2929 inline virtual void debug_traceTransactionI (const Json::Value &request, Json::Value &response)
3030 {
@@ -50,7 +50,7 @@ namespace dev {
5050 {
5151 response = this ->debug_traceCall (request[0u ], request[1u ].asString (), request[2u ]);
5252 }
53- virtual Json::Value debug_accountRangeAt (const std::string& param1, int param2, const std::string& param3, int param4) = 0;
53+ virtual Json::Value debug_accountRange (const std::string& param1, int param2, const std::string& param3, int param4) = 0;
5454 virtual Json::Value debug_traceTransaction (const std::string& param1, const Json::Value& param2) = 0;
5555 virtual Json::Value debug_storageRangeAt (const std::string& param1, int param2, const std::string& param3, const std::string& param4, int param5) = 0;
5656 virtual std::string debug_preimage (const std::string& param1) = 0;
0 commit comments