From 3db087207089078a9d96cd066c20eaa0bdb39634 Mon Sep 17 00:00:00 2001 From: Felix Lange Date: Tue, 31 Mar 2020 10:36:54 +0200 Subject: [PATCH] eth: rename AccountRangeAt to AccountRange --- eth/api.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eth/api.go b/eth/api.go index 44934cae56..ab9aef2950 100644 --- a/eth/api.go +++ b/eth/api.go @@ -355,7 +355,7 @@ func (api *PrivateDebugAPI) GetBadBlocks(ctx context.Context) ([]*BadBlockArgs, const AccountRangeMaxResults = 256 // AccountRangeAt enumerates all accounts in the given block and start point in paging request -func (api *PublicDebugAPI) AccountRangeAt(blockNrOrHash rpc.BlockNumberOrHash, start []byte, maxResults int, nocode, nostorage, incompletes bool) (state.IteratorDump, error) { +func (api *PublicDebugAPI) AccountRange(blockNrOrHash rpc.BlockNumberOrHash, start []byte, maxResults int, nocode, nostorage, incompletes bool) (state.IteratorDump, error) { var stateDb *state.StateDB var err error