aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeffrey Wilcke <jeffrey@ethereum.org>2015-08-08 02:41:41 +0800
committerJeffrey Wilcke <jeffrey@ethereum.org>2015-08-08 02:41:41 +0800
commit312128384b1c32306123f8ad3be1be32bbd8235c (patch)
treef758e79c9726e4149bb2afc83a27e341e3d342c7
parentdcb23bc3abf239766d57fd9900ee3f0b0757443b (diff)
parent3ccab5a1e8c4a6c4245f62dfaf7120dc54745997 (diff)
downloaddexon-312128384b1c32306123f8ad3be1be32bbd8235c.tar.gz
dexon-312128384b1c32306123f8ad3be1be32bbd8235c.tar.zst
dexon-312128384b1c32306123f8ad3be1be32bbd8235c.zip
Merge pull request #1620 from caktux/develop
string version for build server
-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 ddfa8e661..df4439703 100644
--- a/cmd/geth/main.go
+++ b/cmd/geth/main.go
@@ -52,13 +52,13 @@ import (
const (
ClientIdentifier = "Geth "
+ Version = "1.0.1"
VersionMajor = 1
VersionMinor = 0
VersionPatch = 1
)
var (
- Version = fmt.Sprintf("%d.%d.%d", VersionMajor, VersionMinor, VersionPatch)
gitCommit string // set via linker flagg
nodeNameVersion string
app *cli.App