From 8f31f30500802d0be349e86430fff1d618bce6e0 Mon Sep 17 00:00:00 2001 From: CPerezz Date: Sat, 18 Apr 2026 18:53:23 +0200 Subject: [PATCH] trie/bintrie: trim storeChunkSize doc comment MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Gballet posted an empty 'suggestion' block on node_store.go:24 (comment 3100612272) — collapse the 4-line explanatory block to one line. --- trie/bintrie/node_store.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/trie/bintrie/node_store.go b/trie/bintrie/node_store.go index 2f733e2a53..8f19c00fc5 100644 --- a/trie/bintrie/node_store.go +++ b/trie/bintrie/node_store.go @@ -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