diff --git a/core/state/trie_prefetcher.go b/core/state/trie_prefetcher.go index f000645c25..a111b4630e 100644 --- a/core/state/trie_prefetcher.go +++ b/core/state/trie_prefetcher.go @@ -271,11 +271,7 @@ func (sf *subfetcher) loop() { if len(task) == common.AddressLength { sf.trie.GetAccount(common.BytesToAddress(task)) } else { - _, err := sf.trie.GetStorage(sf.addr, task) - if err != nil { - // TODO: see what needs to be done in this case - fmt.Printf("prefetch storage failed: %+v\n", err) - } + _, _ := sf.trie.GetStorage(sf.addr, task) } sf.seen[string(task)] = struct{}{} }