From 2463860b2ae31c689be3df75e72dd163cd96cc1e Mon Sep 17 00:00:00 2001 From: maskpp Date: Sun, 2 Nov 2025 13:53:34 +0800 Subject: [PATCH] Update trie/stacktrie.go Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- trie/stacktrie.go | 1 + 1 file changed, 1 insertion(+) diff --git a/trie/stacktrie.go b/trie/stacktrie.go index c19991b162..b84a31b010 100644 --- a/trie/stacktrie.go +++ b/trie/stacktrie.go @@ -157,6 +157,7 @@ const ( hashedNode ) +// emptyNodes is a pre-initialized array of nil pointers used to efficiently clear stNode children arrays during reset operations. var emptyNodes = [16]*stNode{} func (n *stNode) reset() *stNode {