mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-03-02 09:33:46 +00:00
core/state: fix typo in comment (#23665)
This commit is contained in:
parent
01fdca53e1
commit
12f971fb2d
1 changed files with 1 additions and 1 deletions
|
|
@ -228,7 +228,7 @@ func (s *stateObject) GetCommittedState(db Database, key common.Hash) common.Has
|
|||
}
|
||||
enc, err = s.db.snap.Storage(s.addrHash, crypto.Keccak256Hash(key.Bytes()))
|
||||
}
|
||||
// If snapshot unavailable or reading from it failed, load from the database
|
||||
// If the snapshot is unavailable or reading from it fails, load from the database.
|
||||
if s.db.snap == nil || err != nil {
|
||||
if meter != nil {
|
||||
// If we already spent time checking the snapshot, account for it
|
||||
|
|
|
|||
Loading…
Reference in a new issue