From c8e3e836411467afe36976254a7256a66a57ac8b Mon Sep 17 00:00:00 2001 From: philip-morlier Date: Mon, 18 Oct 2021 14:48:51 -0700 Subject: [PATCH] Updated wrappers to reflect changes to tracer functions --- plugins/wrappers/wrappers.go | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/plugins/wrappers/wrappers.go b/plugins/wrappers/wrappers.go index 5b9c12661..f799ad03b 100644 --- a/plugins/wrappers/wrappers.go +++ b/plugins/wrappers/wrappers.go @@ -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() }