diff options
author | Taylor Gerring <taylor.gerring@gmail.com> | 2015-06-19 04:38:17 +0800 |
---|---|---|
committer | Taylor Gerring <taylor.gerring@gmail.com> | 2015-06-19 04:38:17 +0800 |
commit | 8d3faf69d00420b80d4d737e618b2c7791c10ae9 (patch) | |
tree | 4d679f2abf30bd948c46719dd7220a91294f8a27 /tests/vm_test_util.go | |
parent | baea8e87e5dfdcfb7b2fdcef48fa6038d60a6f9c (diff) | |
download | dexon-8d3faf69d00420b80d4d737e618b2c7791c10ae9.tar.gz dexon-8d3faf69d00420b80d4d737e618b2c7791c10ae9.tar.zst dexon-8d3faf69d00420b80d4d737e618b2c7791c10ae9.zip |
Build error fixes
Diffstat (limited to 'tests/vm_test_util.go')
-rw-r--r-- | tests/vm_test_util.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/vm_test_util.go b/tests/vm_test_util.go index 9fccafd8e..afeedda2a 100644 --- a/tests/vm_test_util.go +++ b/tests/vm_test_util.go @@ -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) |