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

View File

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