From c884b4dfccf7ed4d91ef7a7e9ac23ba2cd297a2f Mon Sep 17 00:00:00 2001 From: rjl493456442 Date: Wed, 18 Oct 2023 15:42:28 +0800 Subject: [PATCH] Update trie/stacktrie.go Co-authored-by: Martin Holst Swende --- trie/stacktrie.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/trie/stacktrie.go b/trie/stacktrie.go index 0a02441d1a..6ad30e8322 100644 --- a/trie/stacktrie.go +++ b/trie/stacktrie.go @@ -73,8 +73,8 @@ type StackTrie struct { root *stNode h *hasher - first []byte // The key of first inserted entry, tracked as left boundary. - last []byte // The key of last inserted entry, tracked as right boundary. + first []byte // The (hex-encoded without terminator) key of first inserted entry, tracked as left boundary. + last []byte // The (hex-encoded without terminator) key of last inserted entry, tracked as right boundary. } // NewStackTrie allocates and initializes an empty trie.