From a92d8a26547c138953665387c57168e68bacdd13 Mon Sep 17 00:00:00 2001
From: Paul Litvak <litvakpol@012.net.il>
Date: Tue, 19 Sep 2017 00:07:19 +0300
Subject: [PATCH] trie: fix typo (#15152)

---
 trie/hasher.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/trie/hasher.go b/trie/hasher.go
index 672456e2d..4719aabf6 100644
--- a/trie/hasher.go
+++ b/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)
-- 
GitLab