diff --git a/core/state/trie_prefetcher.go b/core/state/trie_prefetcher.go index 615446aedd..92f243ea5a 100644 --- a/core/state/trie_prefetcher.go +++ b/core/state/trie_prefetcher.go @@ -270,7 +270,7 @@ func (sf *subfetcher) loop() { if len(task) == common.AddressLength { sf.trie.GetAccount(common.BytesToAddress(task)) } else { - _, _ := sf.trie.GetStorage(sf.addr, task) + sf.trie.GetStorage(sf.addr, task) } sf.seen[string(task)] = struct{}{} }