From cd09948040284ada6811354f45d73e0233f0875d Mon Sep 17 00:00:00 2001 From: ericxtheodore Date: Tue, 29 Jul 2025 17:58:25 +0800 Subject: [PATCH] fix --- core/state/transient_storage.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/state/transient_storage.go b/core/state/transient_storage.go index 8b5ae67fd5..f55c694af4 100644 --- a/core/state/transient_storage.go +++ b/core/state/transient_storage.go @@ -79,7 +79,7 @@ func (t transientStorage) PrettyPrint() string { for _, addr := range sortedAddrs { fmt.Fprintf(out, "%#x:", addr) storage := t[addr] - sortedKeys = make([]common.Hash, 0, len(storage)) + sortedKeys := make([]common.Hash, 0, len(storage)) for key := range storage { sortedKeys = append(sortedKeys, key) }