Skip to content

Commit

Permalink
Update trie/stacktrie.go
Browse files Browse the repository at this point in the history
  • Loading branch information
holiman authored Nov 18, 2024
1 parent af2feef commit 258987d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion trie/stacktrie.go
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ func NewStackTrie(onTrieNode OnTrieNode) *StackTrie {
root: stPool.Get().(*stNode),
h: newHasher(false),
onTrieNode: onTrieNode,
kBuf: make([]byte, 0, 32),
kBuf: make([]byte, 0, 64),
pBuf: make([]byte, 0, 32),
}
}
Expand Down

0 comments on commit 258987d

Please sign in to comment.