diff --git a/eth/tracers/native/call.go b/eth/tracers/native/call.go index 2d8070fd13..a9a78e74c8 100644 --- a/eth/tracers/native/call.go +++ b/eth/tracers/native/call.go @@ -271,6 +271,7 @@ func (t *callTracer) GetResult() (json.RawMessage, error) { // Stop terminates execution of the tracer at the first opportune moment. func (t *callTracer) Stop(err error) { t.reason = err + fmt.Printf("[JEREMYDEBUG] In callTracer, Stop: err %v\n", err) t.interrupt.Store(true) }