From e32a3e24b9091ed8f725cc113c664387fd9bbba3 Mon Sep 17 00:00:00 2001 From: Guillaume Ballet <3272758+gballet@users.noreply.github.com> Date: Tue, 28 Apr 2026 15:42:19 +0200 Subject: [PATCH] fix linter --- trie/bintrie/recorder.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/trie/bintrie/recorder.go b/trie/bintrie/recorder.go index 59fdd14364..e6c757b106 100644 --- a/trie/bintrie/recorder.go +++ b/trie/bintrie/recorder.go @@ -24,9 +24,11 @@ import ( // Recorder maintains the inverse of the binary-trie key transform: it captures // every mutation applied to a BinaryTrie keyed by the original address (and, // for storage, the original slot key) so the post-state can be rendered as a +// types.GenesisAlloc. type Recorder struct { accounts map[common.Address]*types.Account } + // NewRecorder returns an empty Recorder. func NewRecorder() *Recorder { return &Recorder{accounts: make(map[common.Address]*types.Account)}