aboutsummaryrefslogtreecommitdiffstats
path: root/cmd
diff options
context:
space:
mode:
Diffstat (limited to 'cmd')
-rw-r--r--cmd/ethereum/main.go2
-rw-r--r--cmd/ethtest/main.go3
2 files changed, 2 insertions, 3 deletions
diff --git a/cmd/ethereum/main.go b/cmd/ethereum/main.go
index 181d6d60d..afaf06948 100644
--- a/cmd/ethereum/main.go
+++ b/cmd/ethereum/main.go
@@ -42,7 +42,7 @@ import (
const (
ClientIdentifier = "Ethereum(G)"
- Version = "Frontier - 0.9.1"
+ Version = "0.9.1"
)
var (
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()