Skip to content

Commit

Permalink
tweak: Add decoding/nbc to BNMultiSim.
Browse files Browse the repository at this point in the history
  • Loading branch information
tyler-smith committed Oct 12, 2023
1 parent 794ed89 commit ad15bdc
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion core/state_processor.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down

0 comments on commit ad15bdc

Please sign in to comment.