Update statedb.go

This commit is contained in:
rjl493456442 2024-06-04 10:07:39 +08:00 committed by GitHub
parent 7d5b8feedc
commit 0014eb6cf4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -219,7 +219,7 @@ func (s *StateDB) StartPrefetcher(namespace string) {
// the prefetcher is constructed. For more details, see:
// https://github.com/ethereum/go-ethereum/issues/29880
if err := s.prefetcher.prefetch(common.Hash{}, s.originalRoot, common.Address{}, nil); err != nil {
log.Error("Failed to prefetch account trie", "root", s.originalRoot.String(), "err", err)
log.Error("Failed to prefetch account trie", "root", s.originalRoot, "err", err)
}
}
}