From 14d5033c9d5e1211388cad4339572f4a63d3904d Mon Sep 17 00:00:00 2001 From: Jeffrey Wilcke Date: Tue, 3 May 2016 14:01:37 +0200 Subject: [PATCH] cmd/geth: fixed to use proper version string for output --- cmd/geth/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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())