diff --git a/trie/sync.go b/trie/sync.go index 908dbde147..589d28364b 100644 --- a/trie/sync.go +++ b/trie/sync.go @@ -428,7 +428,7 @@ func (s *Sync) Commit(dbw ethdb.Batch) error { ) for _, op := range s.membatch.nodes { if op.isDelete() { - // node deletion is not supported in path mode. + // node deletion is only supported in path mode. if op.owner == (common.Hash{}) { rawdb.DeleteAccountTrieNode(dbw, op.path) } else {