cmd/evm: add tests for evm t8n (#23507)

This commit is contained in:
Martin Holst Swende
2021-09-02 09:22:43 +02:00
committed by GitHub
parent 067084feda
commit 4d88974864
17 changed files with 424 additions and 31 deletions

View File

@@ -195,7 +195,7 @@ func main() {
if err := app.Run(os.Args); err != nil {
code := 1
if ec, ok := err.(*t8ntool.NumberedError); ok {
code = ec.Code()
code = ec.ExitCode()
}
fmt.Fprintln(os.Stderr, err)
os.Exit(code)