|
|
@ -667,12 +667,15 @@ func (api *PrivateDebugAPI) traceTx(ctx context.Context, message core.Message, v |
|
|
|
tracer = vm.NewStructLogger(config.LogConfig) |
|
|
|
tracer = vm.NewStructLogger(config.LogConfig) |
|
|
|
} |
|
|
|
} |
|
|
|
// Run the transaction with tracing enabled.
|
|
|
|
// Run the transaction with tracing enabled.
|
|
|
|
vmenv := vm.NewEVM(vmctx, statedb, api.config, vm.Config{Debug: true, Tracer: tracer}) |
|
|
|
vmenv := vm.NewEVM(vmctx, statedb, api.config, vm.Config{Debug: true, Tracer: tracer, EnablePreimageRecording: true}) |
|
|
|
|
|
|
|
|
|
|
|
ret, gas, failed, err := core.ApplyMessage(vmenv, message, new(core.GasPool).AddGas(message.Gas())) |
|
|
|
ret, gas, failed, err := core.ApplyMessage(vmenv, message, new(core.GasPool).AddGas(message.Gas())) |
|
|
|
if err != nil { |
|
|
|
if err != nil { |
|
|
|
return nil, fmt.Errorf("tracing failed: %v", err) |
|
|
|
return nil, fmt.Errorf("tracing failed: %v", err) |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
if err := core.WritePreimages(api.eth.ChainDb(), vmctx.BlockNumber.Uint64(), statedb.Preimages()); err != nil { |
|
|
|
|
|
|
|
return nil, fmt.Errorf("Error writing preimage from trace: %v", err) |
|
|
|
|
|
|
|
} |
|
|
|
// Depending on the tracer type, format and return the output
|
|
|
|
// Depending on the tracer type, format and return the output
|
|
|
|
switch tracer := tracer.(type) { |
|
|
|
switch tracer := tracer.(type) { |
|
|
|
case *vm.StructLogger: |
|
|
|
case *vm.StructLogger: |
|
|
|