Merge pull request #8 from openrelayxyz/feature/plugeth-parity-vmtrace

Updated core/interface.go to include code(), and input() fields on co…
This commit is contained in:
AusIV 2022-01-14 15:29:02 -06:00 committed by GitHub
commit 44c7e0e589
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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