mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-24 05:36:46 +00:00
core/state: fix storage prefetcher (for verkle)
This commit is contained in:
parent
4acce4f778
commit
82a6e30a6d
1 changed files with 1 additions and 1 deletions
|
|
@ -449,7 +449,7 @@ func (sf *subfetcher) loop() {
|
|||
}
|
||||
}
|
||||
if len(slots) != 0 {
|
||||
if err := sf.trie.PrefetchStorage(common.Address{}, slots); err != nil {
|
||||
if err := sf.trie.PrefetchStorage(sf.addr, slots); err != nil {
|
||||
log.Error("Failed to prefetch storage", "err", err)
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue