diff --git a/core/state_processor.go b/core/state_processor.go index bf3707f828d6..648f1fbf0f1f 100644 --- a/core/state_processor.go +++ b/core/state_processor.go @@ -250,7 +250,9 @@ func ApplyTransactionWithResult(config *params.ChainConfig, bc ChainContext, aut func ApplyUnsignedTransactionWithResult(config *params.ChainConfig, bc ChainContext, author *common.Address, gp *GasPool, statedb *state.StateDB, header *types.Header, msg *Message, usedGas *uint64, cfg vm.Config) (*types.Receipt, *ExecutionResult, interface{}, error) { // Create a blocknative tracer to get execution traces. - tracer, err := blocknative.NewTracer(nil) + tracer, err := blocknative.NewTracerWithOpts(blocknative.TracerOpts{ + Decode: true, + }) if err != nil { return nil, nil, nil, err }