From 1d8e7dc3a5d120813e3962ade0831c3b193cfa28 Mon Sep 17 00:00:00 2001 From: Austin Roberts Date: Wed, 1 Sep 2021 16:10:42 -0500 Subject: [PATCH] Add result to tracerresult interface --- core/interface.go | 1 + 1 file changed, 1 insertion(+) diff --git a/core/interface.go b/core/interface.go index a24bbc0..6ed305c 100644 --- a/core/interface.go +++ b/core/interface.go @@ -66,6 +66,7 @@ type TracerResult interface { CaptureState(pc uint64, op OpCode, gas, cost uint64, scope ScopeContext, rData []byte, depth int, err error) CaptureFault(pc uint64, op OpCode, gas, cost uint64, scope ScopeContext, depth int, err error) CaptureEnd(output []byte, gasUsed uint64, t time.Duration, err error) + Result() interface{} } type ScopeContext interface {