Merge pull request #22789 from karalabe/snap-fix-batch

eth/protocols/snap: use storage batch, not account batch in st task
This commit is contained in:
Péter Szilágyi 2021-04-30 21:12:09 +03:00 committed by GitHub
commit afc1abd878
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -690,7 +690,7 @@ func (s *Syncer) loadSyncStatus() {
s.storageBytes += common.StorageSize(len(key) + len(value))
},
}
subtask.genTrie = trie.NewStackTrie(task.genBatch)
subtask.genTrie = trie.NewStackTrie(subtask.genBatch)
}
}
}