Updated wrappers to reflect changes to tracer functions

This commit is contained in:
philip-morlier 2021-10-18 14:48:51 -07:00
parent 6a86c8934a
commit c8e3e83641
No known key found for this signature in database
GPG Key ID: 0323A143B7B6F663

View File

@ -101,6 +101,12 @@ func (w WrappedTracer) CaptureFault(env *vm.EVM, pc uint64, op vm.OpCode, gas, c
func (w WrappedTracer) CaptureEnd(output []byte, gasUsed uint64, t time.Duration, err error) {
w.r.CaptureEnd(output, gasUsed, t, err)
}
func (w WrappedTracer) CaptureEnter(typ vm.OpCode, from common.Address, to common.Address, input []byte, gas uint64, value *big.Int) {
w.r.CaptureEnter(core.OpCode(typ), core.Address(from), core.Address(to), input, gas, value)
}
func (w WrappedTracer) CaptureExit(output []byte, gasUsed uint64, err error) {
w.r.CaptureExit(output, gasUsed, err)
}
func (w WrappedTracer) GetResult() (interface{}, error) {
return w.r.Result()
}