diff options
author | obscuren <geffobscura@gmail.com> | 2015-03-20 05:45:03 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2015-03-20 05:45:03 +0800 |
commit | df5901fdc58565448629a9bfd5ccecc1c5a5b349 (patch) | |
tree | f4365a7c84c098867cb97b684589ee17cd4b9309 /cmd | |
parent | 013427bde27579d50010e728d9b59be91a7fb285 (diff) | |
download | dexon-df5901fdc58565448629a9bfd5ccecc1c5a5b349.tar dexon-df5901fdc58565448629a9bfd5ccecc1c5a5b349.tar.gz dexon-df5901fdc58565448629a9bfd5ccecc1c5a5b349.tar.bz2 dexon-df5901fdc58565448629a9bfd5ccecc1c5a5b349.tar.lz dexon-df5901fdc58565448629a9bfd5ccecc1c5a5b349.tar.xz dexon-df5901fdc58565448629a9bfd5ccecc1c5a5b349.tar.zst dexon-df5901fdc58565448629a9bfd5ccecc1c5a5b349.zip |
Removed more casts
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/ethtest/main.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/cmd/ethtest/main.go b/cmd/ethtest/main.go index ee6bcc540..f2f7d27f3 100644 --- a/cmd/ethtest/main.go +++ b/cmd/ethtest/main.go @@ -24,7 +24,6 @@ package main import ( "bytes" "encoding/json" - "fmt" "io" "io/ioutil" "log" @@ -210,7 +209,7 @@ func RunVmTest(r io.Reader) (failed int) { } if failed == 1 { - fmt.Println(string(statedb.Dump())) + helper.Log.Infoln(string(statedb.Dump())) } logger.Flush() |