From 56b32d74a95434d6c2a57f3a570f2e16033d7c60 Mon Sep 17 00:00:00 2001 From: Ignacio Hagopian Date: Wed, 4 Oct 2023 09:38:57 -0300 Subject: [PATCH] fix typo Signed-off-by: Ignacio Hagopian --- tree.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tree.go b/tree.go index 00e7e932..3dc2ea07 100644 --- a/tree.go +++ b/tree.go @@ -773,7 +773,7 @@ func groupKeys(keys keylist, depth byte) []keylist { } func (n *InternalNode) GetAndLoadForProof(key []byte, resolver NodeResolverFn) ([]byte, error) { - // Each internal node that is part of the proof needs to load all it's + // Each internal node that is part of the proof needs to load all its // children since it's needed for proof openings. childrenKey := make([]byte, n.depth+1) copy(childrenKey, key[:n.depth])