trie/bintrie: trim storeChunkSize doc comment

Gballet posted an empty 'suggestion' block on node_store.go:24 (comment
3100612272) — collapse the 4-line explanatory block to one line.
This commit is contained in:
CPerezz 2026-04-18 18:53:23 +02:00
parent e1859ea864
commit 8f31f30500
No known key found for this signature in database
GPG key ID: 62045F34B97177DD

View file

@ -19,9 +19,6 @@ package bintrie
import "github.com/ethereum/go-ethereum/common"
// storeChunkSize is the number of nodes per chunk in each typed pool.
// Using fixed-size array chunks ensures that pointers to nodes within
// existing chunks remain valid when new chunks are added (no reallocation
// of the backing data, only the outer pointer slice grows).
const storeChunkSize = 4096
// NodeStore is a GC-friendly arena for binary trie nodes. Nodes are packed