From 211ba4f2b185367576ed23c9ef6765b981054dba Mon Sep 17 00:00:00 2001 From: nes77 Date: Thu, 18 Aug 2016 12:33:18 -0400 Subject: [PATCH] trie.go documentation typographical fix --- trie/trie.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trie/trie.go b/trie/trie.go index a530e7b2a3..930cbe8e53 100644 --- a/trie/trie.go +++ b/trie/trie.go @@ -505,7 +505,7 @@ func (h *hasher) hash(n node, db DatabaseWriter, force bool) (node, node, error) if err != nil { return hashNode{}, n, err } - // Cache the hash and RLP blob of the ndoe for later reuse + // Cache the hash and RLP blob of the node for later reuse if hash, ok := hashed.(hashNode); ok && !force { switch cached := cached.(type) { case shortNode: