fixing error on line 69

This commit is contained in:
philip-morlier 2021-09-03 09:34:04 -07:00
parent a6ca470208
commit b7b64de53a
No known key found for this signature in database
GPG Key ID: 0323A143B7B6F663

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)
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 {
@ -74,8 +75,6 @@ type ScopeContext interface {
Contract() Contract
}
//will need a wrapper for scopecontext - in geth sc has fields of m s c, not methods, wrapper will need to go in wrappers.go, if there are private objects wrappers need to be in same package
type Memory interface {
GetCopy(int64, int64) []byte
Len() int