浏览代码

trie: fix typo (#15152)

Paul Litvak 8 年之前
父节点
当前提交
a92d8a2654
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      trie/hasher.go

+ 1 - 1
trie/hasher.go

@@ -76,7 +76,7 @@ func (h *hasher) hash(n node, db DatabaseWriter, force bool) (node, node, error)
 	if err != nil {
 		return hashNode{}, n, err
 	}
-	// Cache the hash of the ndoe for later reuse and remove
+	// Cache the hash of the node for later reuse and remove
 	// the dirty flag in commit mode. It's fine to assign these values directly
 	// without copying the node first because hashChildren copies it.
 	cachedHash, _ := hashed.(hashNode)