diff options
| author | Jeffrey Wilcke <geffobscura@gmail.com> | 2016-05-03 20:01:37 +0800 |
|---|---|---|
| committer | Jeffrey Wilcke <geffobscura@gmail.com> | 2016-05-03 20:01:37 +0800 |
| commit | 14d5033c9d5e1211388cad4339572f4a63d3904d (patch) | |
| tree | 753828919737560559fd9bb087e75965d129a5c5 /cmd/geth | |
| parent | 258cc73ea970890a5b75bf27197c3a6667f3bc5a (diff) | |
| download | dexon-14d5033c9d5e1211388cad4339572f4a63d3904d.tar dexon-14d5033c9d5e1211388cad4339572f4a63d3904d.tar.gz dexon-14d5033c9d5e1211388cad4339572f4a63d3904d.tar.bz2 dexon-14d5033c9d5e1211388cad4339572f4a63d3904d.tar.lz dexon-14d5033c9d5e1211388cad4339572f4a63d3904d.tar.xz dexon-14d5033c9d5e1211388cad4339572f4a63d3904d.tar.zst dexon-14d5033c9d5e1211388cad4339572f4a63d3904d.zip | |
cmd/geth: fixed to use proper version string for output
Diffstat (limited to 'cmd/geth')
| -rw-r--r-- | cmd/geth/main.go | 2 |
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()) |
