From 1fe78debea8fe089a6cba1aacc026625a87a1008 Mon Sep 17 00:00:00 2001 From: Quentin McGaw Date: Fri, 14 Oct 2022 11:36:20 -0400 Subject: [PATCH] Update `PopulateMerkleValues` method comment Co-authored-by: Kishan Sagathiya --- lib/trie/database.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/trie/database.go b/lib/trie/database.go index e5c59f8897..3018b8872a 100644 --- a/lib/trie/database.go +++ b/lib/trie/database.go @@ -186,7 +186,7 @@ func (t *Trie) loadNode(db Database, n *Node) error { } // PopulateMerkleValues writes the Merkle values of the node given and of -// all its descendant nodes as keys to the map merkleValues. +// all its descendant nodes as keys to the merkleValues map. // It is assumed the node and its descendant nodes have their Merkle value already // computed. func PopulateMerkleValues(n *Node, merkleValues map[string]struct{}) {