Build error fixes

This commit is contained in:
Taylor Gerring
2015-06-18 22:38:17 +02:00
parent baea8e87e5
commit 8d3faf69d0
3 changed files with 6 additions and 7 deletions

View File

@ -102,7 +102,7 @@ func runVmTest(test VmTest) error {
ret, logs, gas, err = RunVm(statedb, env, test.Exec)
// Compare expectedand actual return
// Compare expected and actual return
rexp := common.FromHex(test.Out)
if bytes.Compare(rexp, ret) != 0 {
return fmt.Errorf("return failed. Expected %x, got %x\n", rexp, ret)