(from common.Address, to common.Address, call bool, input []byte, gas uint64, value *big.Int)
| 98 | // if you need to retain them beyond the current call. |
| 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 |
no outgoing calls
no test coverage detected