Unverified Commit 98be5f9a authored by Water's avatar Water Committed by GitHub

trie: fix spelling mistake (#24185)

mispelled words in comments: th enext
parent 356bbe34
...@@ -224,7 +224,7 @@ func (s *Sync) Missing(max int) (nodes []common.Hash, paths []SyncPath, codes [] ...@@ -224,7 +224,7 @@ func (s *Sync) Missing(max int) (nodes []common.Hash, paths []SyncPath, codes []
codeHashes []common.Hash codeHashes []common.Hash
) )
for !s.queue.Empty() && (max == 0 || len(nodeHashes)+len(codeHashes) < max) { for !s.queue.Empty() && (max == 0 || len(nodeHashes)+len(codeHashes) < max) {
// Retrieve th enext item in line // Retrieve the next item in line
item, prio := s.queue.Peek() item, prio := s.queue.Peek()
// If we have too many already-pending tasks for this depth, throttle // If we have too many already-pending tasks for this depth, throttle
......
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