aboutsummaryrefslogtreecommitdiffstats
path: root/cmd
diff options
context:
space:
mode:
authorJeffrey Wilcke <geffobscura@gmail.com>2016-05-03 20:01:37 +0800
committerJeffrey Wilcke <geffobscura@gmail.com>2016-05-03 20:01:37 +0800
commit14d5033c9d5e1211388cad4339572f4a63d3904d (patch)
tree753828919737560559fd9bb087e75965d129a5c5 /cmd
parent258cc73ea970890a5b75bf27197c3a6667f3bc5a (diff)
downloadgo-tangerine-14d5033c9d5e1211388cad4339572f4a63d3904d.tar
go-tangerine-14d5033c9d5e1211388cad4339572f4a63d3904d.tar.gz
go-tangerine-14d5033c9d5e1211388cad4339572f4a63d3904d.tar.bz2
go-tangerine-14d5033c9d5e1211388cad4339572f4a63d3904d.tar.lz
go-tangerine-14d5033c9d5e1211388cad4339572f4a63d3904d.tar.xz
go-tangerine-14d5033c9d5e1211388cad4339572f4a63d3904d.tar.zst
go-tangerine-14d5033c9d5e1211388cad4339572f4a63d3904d.zip
cmd/geth: fixed to use proper version string for output
Diffstat (limited to 'cmd')
-rw-r--r--cmd/geth/main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/geth/main.go b/cmd/geth/main.go
index 42ce761d8..b8e2a78b8 100644
--- a/cmd/geth/main.go
+++ b/cmd/geth/main.go
@@ -507,7 +507,7 @@ func gpubench(ctx *cli.Context) {
func version(c *cli.Context) {
fmt.Println(clientIdentifier)
- fmt.Println("Version:", version)
+ fmt.Println("Version:", verString)
fmt.Println("Protocol Versions:", eth.ProtocolVersions)
fmt.Println("Network Id:", c.GlobalInt(utils.NetworkIdFlag.Name))
fmt.Println("Go Version:", runtime.Version())