From 5e49112f9d1536a4b5d1d32afbd841f1d913146c Mon Sep 17 00:00:00 2001 From: Daniel Olshansky Date: Tue, 11 Jun 2024 13:38:19 -0700 Subject: [PATCH] Update hasher.go Co-authored-by: Redouane Lakrache Signed-off-by: Daniel Olshansky --- hasher.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hasher.go b/hasher.go index 849a21c..64ea97b 100644 --- a/hasher.go +++ b/hasher.go @@ -153,7 +153,7 @@ func (th *trieHasher) parseInnerNode(data []byte) (leftData, rightData []byte) { } // parseSumInnerNode returns the encoded left & right nodes, as well as the sum -// and non-empty leafs in the sub-trie of the current node. +// and non-empty leaf count in the sub-trie of the current node. func (th *trieHasher) parseSumInnerNode(data []byte) (leftData, rightData []byte, sum, count uint64) { firstSumByteIdx, firstCountByteIdx := GetFirstMetaByteIdx(data)