Merge pull request #17 from openrelayxyz/feature/bor-cli-shim

interface added to core/interface to enable passing through of cli.v2…
This commit is contained in:
Philip Morlier 2022-12-07 18:12:56 -08:00 committed by GitHub
commit 06632b4360
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -214,3 +214,11 @@ type BlockContext struct {
Difficulty *big.Int
BaseFee *big.Int
}
type Context interface {
Set(string, string) error
String(string) string
Bool(string) bool
}