diff options
author | zelig <viktor.tron@gmail.com> | 2014-06-27 22:56:45 +0800 |
---|---|---|
committer | zelig <viktor.tron@gmail.com> | 2014-06-27 22:56:45 +0800 |
commit | 79009ca074d77561c655b65254103b4070b74c69 (patch) | |
tree | 72c4a340800a216d788421b9a95da276a8b9579d /ethutil/config.go | |
parent | 423beddf574383ec58246938f738f08cd50f031a (diff) | |
download | dexon-79009ca074d77561c655b65254103b4070b74c69.tar.gz dexon-79009ca074d77561c655b65254103b4070b74c69.tar.zst dexon-79009ca074d77561c655b65254103b4070b74c69.zip |
transitional ethutil.ReadConfig fixes in ethchain tests (they still fail! FIXME :)
Diffstat (limited to 'ethutil/config.go')
-rw-r--r-- | ethutil/config.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ethutil/config.go b/ethutil/config.go index aa4ae9c3e..b253aa203 100644 --- a/ethutil/config.go +++ b/ethutil/config.go @@ -44,7 +44,7 @@ func ReadConfig(ConfigFile string, Datadir string, Identifier string, EnvPrefix } else { g.ParseAll() } - Config = &config{ExecPath: Datadir, Debug: true, Ver: "0.5.14", conf: g, Identifier: Identifier} + Config = &config{ExecPath: Datadir, Debug: true, Ver: "0.5.15", conf: g, Identifier: Identifier} Config.SetClientString("Ethereum(G)") } return Config |