core/state: filter out nil trie for copy (#25575)

This commit is contained in:
rjl493456442
2022-09-01 09:34:32 +02:00
committed by GitHub
parent d79bd2f0f6
commit d46184c969
+3
View File
@@ -126,6 +126,9 @@ func (p *triePrefetcher) copy() *triePrefetcher {
// If the prefetcher is already a copy, duplicate the data
if p.fetches != nil {
for root, fetch := range p.fetches {
if fetch == nil {
continue
}
copy.fetches[root] = p.db.CopyTrie(fetch)
}
return copy