core/state: filter out nil trie for copy (#25575)
This commit is contained in:
parent
d79bd2f0f6
commit
d46184c969
@ -126,6 +126,9 @@ func (p *triePrefetcher) copy() *triePrefetcher {
|
|||||||
// If the prefetcher is already a copy, duplicate the data
|
// If the prefetcher is already a copy, duplicate the data
|
||||||
if p.fetches != nil {
|
if p.fetches != nil {
|
||||||
for root, fetch := range p.fetches {
|
for root, fetch := range p.fetches {
|
||||||
|
if fetch == nil {
|
||||||
|
continue
|
||||||
|
}
|
||||||
copy.fetches[root] = p.db.CopyTrie(fetch)
|
copy.fetches[root] = p.db.CopyTrie(fetch)
|
||||||
}
|
}
|
||||||
return copy
|
return copy
|
||||||
|
Loading…
Reference in New Issue
Block a user