Merge pull request #14858 from xmikus01/patch-1

trie: typo in comment
This commit is contained in:
Péter Szilágyi 2017-07-26 09:40:41 +02:00 committed by GitHub
commit a602ee90f2
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ type SyncResult struct {
// syncMemBatch is an in-memory buffer of successfully downloaded but not yet
// persisted data items.
type syncMemBatch struct {
batch map[common.Hash][]byte // In-memory membatch of recently ocmpleted items
batch map[common.Hash][]byte // In-memory membatch of recently completed items
order []common.Hash // Order of completion to prevent out-of-order data loss
}