Updated core/interface.go to include code(), and input() fields on contract object

This commit is contained in:
philip-morlier 2022-01-14 13:25:37 -08:00
parent 9048547fd9
commit b27029cd43

View File

@ -130,6 +130,8 @@ type Contract interface {
Caller() Address
Address() Address
Value() *big.Int
Input() []byte
Code() []byte
}
type Downloader interface {