mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 10:52:25 +00:00
Fix compatibility with go 1.13
This commit is contained in:
parent
77aea4f0d9
commit
e8adb222f6
1 changed files with 2 additions and 1 deletions
|
|
@ -36,7 +36,8 @@ var (
|
|||
expected string
|
||||
)
|
||||
|
||||
var flagsParsed = func() bool {
|
||||
var _ = func() bool {
|
||||
testing.Init()
|
||||
flag.StringVar(&codefile, "codefile", "", "EVM code to run")
|
||||
flag.StringVar(&input, "input", "", "input calldata")
|
||||
flag.StringVar(&expected, "expected", "", "expected return data")
|
||||
|
|
|
|||
Loading…
Reference in a new issue