(env *EVM, pc uint64, op OpCode, gas, cost uint64, memory *Memory, stack *Stack, contract *Contract, depth int, err error)
| 99 | type Tracer interface { |
| 100 | CaptureStart(from common.Address, to common.Address, call bool, input []byte, gas uint64, value *big.Int) error |
| 101 | CaptureState(env *EVM, pc uint64, op OpCode, gas, cost uint64, memory *Memory, stack *Stack, contract *Contract, depth int, err error) error |
| 102 | CaptureFault(env *EVM, pc uint64, op OpCode, gas, cost uint64, memory *Memory, stack *Stack, contract *Contract, depth int, err error) error |
| 103 | CaptureEnd(output []byte, gasUsed uint64, t time.Duration, err error) error |
| 104 | } |
no outgoing calls