Add result to tracerresult interface

This commit is contained in:
Austin Roberts 2021-09-01 16:10:42 -05:00
parent 8148633920
commit 1d8e7dc3a5

View File

@ -66,6 +66,7 @@ type TracerResult interface {
CaptureState(pc uint64, op OpCode, gas, cost uint64, scope ScopeContext, rData []byte, depth int, err error) 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) CaptureFault(pc uint64, op OpCode, gas, cost uint64, scope ScopeContext, depth int, err error)
CaptureEnd(output []byte, gasUsed uint64, t time.Duration, err error) CaptureEnd(output []byte, gasUsed uint64, t time.Duration, err error)
Result() interface{}
} }
type ScopeContext interface { type ScopeContext interface {