aboutsummaryrefslogtreecommitdiffstats
path: root/cmd
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2015-03-20 05:45:03 +0800
committerobscuren <geffobscura@gmail.com>2015-03-20 05:45:03 +0800
commitdf5901fdc58565448629a9bfd5ccecc1c5a5b349 (patch)
treef4365a7c84c098867cb97b684589ee17cd4b9309 /cmd
parent013427bde27579d50010e728d9b59be91a7fb285 (diff)
downloadgo-tangerine-df5901fdc58565448629a9bfd5ccecc1c5a5b349.tar
go-tangerine-df5901fdc58565448629a9bfd5ccecc1c5a5b349.tar.gz
go-tangerine-df5901fdc58565448629a9bfd5ccecc1c5a5b349.tar.bz2
go-tangerine-df5901fdc58565448629a9bfd5ccecc1c5a5b349.tar.lz
go-tangerine-df5901fdc58565448629a9bfd5ccecc1c5a5b349.tar.xz
go-tangerine-df5901fdc58565448629a9bfd5ccecc1c5a5b349.tar.zst
go-tangerine-df5901fdc58565448629a9bfd5ccecc1c5a5b349.zip
Removed more casts
Diffstat (limited to 'cmd')
-rw-r--r--cmd/ethtest/main.go3
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()