aboutsummaryrefslogtreecommitdiffstats
path: root/ethutil
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-06-12 16:07:40 +0800
committerobscuren <geffobscura@gmail.com>2014-06-12 16:07:40 +0800
commit6593c6942454233f61d7d74f030a9075a84807cd (patch)
tree13ce91005e853412a88ae7a17ef5641559631744 /ethutil
parent8a2e50ab2a6c903a6ab3ab10a74c37e1f3b8f3f1 (diff)
parent3a9d7d318abb3cd01ecd012ae85da5e586436d65 (diff)
downloaddexon-6593c6942454233f61d7d74f030a9075a84807cd.tar
dexon-6593c6942454233f61d7d74f030a9075a84807cd.tar.gz
dexon-6593c6942454233f61d7d74f030a9075a84807cd.tar.bz2
dexon-6593c6942454233f61d7d74f030a9075a84807cd.tar.lz
dexon-6593c6942454233f61d7d74f030a9075a84807cd.tar.xz
dexon-6593c6942454233f61d7d74f030a9075a84807cd.tar.zst
dexon-6593c6942454233f61d7d74f030a9075a84807cd.zip
Merge branch 'develop' into interop
Diffstat (limited to 'ethutil')
-rw-r--r--ethutil/config.go12
1 files changed, 5 insertions, 7 deletions
diff --git a/ethutil/config.go b/ethutil/config.go
index e992bda12..f935e8f75 100644
--- a/ethutil/config.go
+++ b/ethutil/config.go
@@ -75,11 +75,11 @@ func ReadConfig(base string, logTypes LoggerType, g *globalconf.GlobalConf, id s
if Config == nil {
path := ApplicationFolder(base)
- Config = &config{ExecPath: path, Debug: true, Ver: "0.5.0 RC12"}
+ Config = &config{ExecPath: path, Debug: true, Ver: "0.5.12"}
Config.conf = g
Config.Identifier = id
Config.Log = NewLogger(logTypes, LogLevelDebug)
- Config.SetClientString("/Ethereum(G)")
+ Config.SetClientString("Ethereum(G)")
}
return Config
@@ -88,11 +88,9 @@ func ReadConfig(base string, logTypes LoggerType, g *globalconf.GlobalConf, id s
// Set client string
//
func (c *config) SetClientString(str string) {
- id := runtime.GOOS
- if len(c.Identifier) > 0 {
- id = c.Identifier
- }
- Config.ClientString = fmt.Sprintf("%s nv%s/%s", str, c.Ver, id)
+ os := runtime.GOOS
+ cust := c.Identifier
+ Config.ClientString = fmt.Sprintf("%s/v%s/%s/%s/Go", str, c.Ver, cust, os)
}
func (c *config) SetIdentifier(id string) {