From 9f03a276e49f37318060dae14a5af2a0556e350b Mon Sep 17 00:00:00 2001 From: Delweng Date: Tue, 29 Oct 2024 10:58:54 +0800 Subject: [PATCH] Update prestate.go Co-authored-by: Sina M <1591639+s1na@users.noreply.github.com> --- eth/tracers/native/prestate.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eth/tracers/native/prestate.go b/eth/tracers/native/prestate.go index bc7b6bf6bf..9706eb43f6 100644 --- a/eth/tracers/native/prestate.go +++ b/eth/tracers/native/prestate.go @@ -273,7 +273,7 @@ func (t *prestateTracer) lookupAccount(addr common.Address) { if !acc.exists() { acc.empty = true } - + // The code must be fetched first for the emptiness check. if t.config.DisableCode { acc.Code = nil }