From 1b5d65fdf394537df71b24de9f90d83826307287 Mon Sep 17 00:00:00 2001 From: Jared Wasinger Date: Mon, 11 May 2026 13:45:22 -0400 Subject: [PATCH] remove mistake from last commit --- eth/tracers/api.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eth/tracers/api.go b/eth/tracers/api.go index c85af49f0e..9d51c5b8cf 100644 --- a/eth/tracers/api.go +++ b/eth/tracers/api.go @@ -372,9 +372,9 @@ func (api *API) traceChain(start, end *types.Block, config *TraceConfig, closed // as per EIP-4788. context := core.NewEVMBlockContext(next.Header(), api.chainContext(ctx), nil) evm := vm.NewEVM(context, statedb, api.backend.ChainConfig(), vm.Config{}) - defer evm.Release() core.PreExecution(ctx, next.BeaconRoot(), next.ParentHash(), api.backend.ChainConfig(), evm, next.Number(), next.Time()) + evm.Release() // Clean out any pending release functions of trace state. Note this // step must be done after constructing tracing state, because the // tracing state of block next depends on the parent state and construction