mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-05-21 15:29:27 +00:00
string version for build server
This commit is contained in:
parent
dcb23bc3ab
commit
3ccab5a1e8
1 changed files with 1 additions and 1 deletions
|
|
@ -52,13 +52,13 @@ import (
|
||||||
|
|
||||||
const (
|
const (
|
||||||
ClientIdentifier = "Geth "
|
ClientIdentifier = "Geth "
|
||||||
|
Version = "1.0.1"
|
||||||
VersionMajor = 1
|
VersionMajor = 1
|
||||||
VersionMinor = 0
|
VersionMinor = 0
|
||||||
VersionPatch = 1
|
VersionPatch = 1
|
||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var (
|
||||||
Version = fmt.Sprintf("%d.%d.%d", VersionMajor, VersionMinor, VersionPatch)
|
|
||||||
gitCommit string // set via linker flagg
|
gitCommit string // set via linker flagg
|
||||||
nodeNameVersion string
|
nodeNameVersion string
|
||||||
app *cli.App
|
app *cli.App
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue