mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 10:52:25 +00:00
eth: rename AccountRangeAt to AccountRange
This commit is contained in:
parent
650b5e80a6
commit
3db0872070
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue