From b27029cd43b4d5c94d8135892094168d32e48cab Mon Sep 17 00:00:00 2001 From: philip-morlier Date: Fri, 14 Jan 2022 13:25:37 -0800 Subject: [PATCH] Updated core/interface.go to include code(), and input() fields on contract object --- core/interface.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/interface.go b/core/interface.go index 1e856f7..bbc9939 100644 --- a/core/interface.go +++ b/core/interface.go @@ -130,6 +130,8 @@ type Contract interface { Caller() Address Address() Address Value() *big.Int + Input() []byte + Code() []byte } type Downloader interface {