mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-05-14 03:56:36 +00:00
eth: formatted error nit (#25499)
This commit is contained in:
parent
e4b3bd6f26
commit
759d795c56
1 changed files with 1 additions and 1 deletions
|
|
@ -586,5 +586,5 @@ func (api *DebugAPI) GetAccessibleState(from, to rpc.BlockNumber) (uint64, error
|
||||||
return uint64(i), nil
|
return uint64(i), nil
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return 0, fmt.Errorf("no state found")
|
return 0, errors.New("no state found")
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue