mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-18 18:02:24 +00:00
Update cmd/evm/runner.go
Co-authored-by: Martin HS <martin@swende.se>
This commit is contained in:
parent
0ac7ff025f
commit
83d6b303c0
1 changed files with 1 additions and 1 deletions
|
|
@ -93,7 +93,7 @@ func timedExec(bench bool, execFunc func() ([]byte, uint64, error)) ([]byte, exe
|
||||||
panic(fmt.Sprintf("output differs, have\n%x\nwant %x\n", haveOutput, output))
|
panic(fmt.Sprintf("output differs, have\n%x\nwant %x\n", haveOutput, output))
|
||||||
}
|
}
|
||||||
if haveGasUsed != gasUsed {
|
if haveGasUsed != gasUsed {
|
||||||
panic(fmt.Sprintf("gas differs, have %v want%v", haveGasUsed, gasUsed))
|
panic(fmt.Sprintf("gas differs, have %v want %v", haveGasUsed, gasUsed))
|
||||||
}
|
}
|
||||||
if haveErr != err {
|
if haveErr != err {
|
||||||
panic(fmt.Sprintf("err differs, have %v want %v", haveErr, err))
|
panic(fmt.Sprintf("err differs, have %v want %v", haveErr, err))
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue