From 98451ebec9dc9b1bc60b15fa2920d0c53d3572c7 Mon Sep 17 00:00:00 2001 From: Jared Wasinger Date: Sun, 5 Oct 2025 19:26:14 +0800 Subject: [PATCH] add note to consider --- core/types/bal/bal.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/types/bal/bal.go b/core/types/bal/bal.go index 33e2df3c16..ee372a7924 100644 --- a/core/types/bal/bal.go +++ b/core/types/bal/bal.go @@ -158,8 +158,10 @@ func (c *AccessListBuilder) SelfDestruct(address common.Address) { } access.storageReads[key] = struct{}{} } + access.storageMutations = nil access.nonce = nil + // TODO: should this be set to zero? the semantics are that nil means unmodified since the prestate of the block. access.balance = nil access.code = nil }