Skip to content

Commit

Permalink
nits
Browse files Browse the repository at this point in the history
  • Loading branch information
patrick-ogrady committed Nov 1, 2022
1 parent 2df4b44 commit cfec0c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/state/state_object.go
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ func (s *stateObject) GetCommittedState(db Database, key common.Hash) common.Has
start := time.Now()
enc, err = s.getTrie(db).TryGet(key.Bytes())
if metrics.EnabledExpensive {
log.Warn("reading storage from trie", "snap exists", s.db.snap == nil, "err", err)
log.Warn("reading storage from trie", "snap missing", s.db.snap == nil, "err", err)
s.db.StorageReads += time.Since(start)
}
if err != nil {
Expand Down

0 comments on commit cfec0c2

Please sign in to comment.