Commit 70398d30 authored by Mymskmkt's avatar Mymskmkt Committed by Péter Szilágyi

trie: fix typo (#17498)

parent c134e00e
...@@ -73,7 +73,7 @@ func newSyncMemBatch() *syncMemBatch { ...@@ -73,7 +73,7 @@ func newSyncMemBatch() *syncMemBatch {
// and reconstructs the trie step by step until all is done. // and reconstructs the trie step by step until all is done.
type Sync struct { type Sync struct {
database DatabaseReader // Persistent database to check for existing entries database DatabaseReader // Persistent database to check for existing entries
membatch *syncMemBatch // Memory buffer to avoid frequest database writes membatch *syncMemBatch // Memory buffer to avoid frequent database writes
requests map[common.Hash]*request // Pending requests pertaining to a key hash requests map[common.Hash]*request // Pending requests pertaining to a key hash
queue *prque.Prque // Priority queue with the pending requests queue *prque.Prque // Priority queue with the pending requests
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment