diff options
author | obscuren <geffobscura@gmail.com> | 2014-12-04 18:30:41 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-12-04 18:30:41 +0800 |
commit | 3664cd58e3631fccf4d9aba1932e0bb63ad442a6 (patch) | |
tree | 6e2b1037916ffa035c8bfc13bca99ad151124dd9 /cmd/ethtest | |
parent | 491edc16e778e3d232f643a4b4155c4f71ef27cc (diff) | |
download | dexon-3664cd58e3631fccf4d9aba1932e0bb63ad442a6.tar.gz dexon-3664cd58e3631fccf4d9aba1932e0bb63ad442a6.tar.zst dexon-3664cd58e3631fccf4d9aba1932e0bb63ad442a6.zip |
Updated testing tools
Diffstat (limited to 'cmd/ethtest')
-rw-r--r-- | cmd/ethtest/main.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/ethtest/main.go b/cmd/ethtest/main.go index 82e1c6d59..94ab779db 100644 --- a/cmd/ethtest/main.go +++ b/cmd/ethtest/main.go @@ -82,7 +82,7 @@ func RunVmTest(js string) (failed int) { state.SetStateObject(obj) } - ret, gas, err := helper.RunVm(state, test.Env, test.Exec) + ret, _, gas, err := helper.RunVm(state, test.Env, test.Exec) // When an error is returned it doesn't always mean the tests fails. // Have to come up with some conditional failing mechanism. if err != nil { |