diff options
author | zelig <viktor.tron@gmail.com> | 2014-07-04 00:36:24 +0800 |
---|---|---|
committer | zelig <viktor.tron@gmail.com> | 2014-07-04 00:36:24 +0800 |
commit | 9de30d96f0362bc885d75a27bbd9c3d02af2d983 (patch) | |
tree | ececb77916fabbadff279fb2636ecd759afd9057 /ethereal | |
parent | a3c482351114404a4568f4b3f4503182402dc6fd (diff) | |
download | dexon-9de30d96f0362bc885d75a27bbd9c3d02af2d983.tar dexon-9de30d96f0362bc885d75a27bbd9c3d02af2d983.tar.gz dexon-9de30d96f0362bc885d75a27bbd9c3d02af2d983.tar.bz2 dexon-9de30d96f0362bc885d75a27bbd9c3d02af2d983.tar.lz dexon-9de30d96f0362bc885d75a27bbd9c3d02af2d983.tar.xz dexon-9de30d96f0362bc885d75a27bbd9c3d02af2d983.tar.zst dexon-9de30d96f0362bc885d75a27bbd9c3d02af2d983.zip |
Modify main wrappers
- clientIdentifier now set in main wrappers
- version handled within wrapper
- modify InitConfig now returning *ethutil.ConfigManager (passed to gui)
- added NewClientIdentity returning *ethwire.SimpleClientIdentiy (passed to ethereum)
Diffstat (limited to 'ethereal')
-rw-r--r-- | ethereal/main.go | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/ethereal/main.go b/ethereal/main.go index f3f1d3140..645e8f2ce 100644 --- a/ethereal/main.go +++ b/ethereal/main.go @@ -8,6 +8,11 @@ import ( "runtime" ) +const ( + ClientIdentifier = "Ethereal" + Version = "0.5.16" +) + func main() { // Leave QT on top at ALL times. Qt Needs to be initialized from the main thread qml.Init(nil) @@ -23,7 +28,8 @@ func main() { // precedence: code-internal flag default < config file < environment variables < command line Init() // parsing command line - utils.InitConfig(ConfigFile, Datadir, Identifier, "ETH") + + config := utils.InitConfig(ConfigFile, Datadir, "ETH") utils.InitDataDir(Datadir) @@ -36,7 +42,9 @@ func main() { // create, import, export keys utils.KeyTasks(keyManager, KeyRing, GenAddr, SecretFile, ExportDir, NonInteractive) - ethereum := utils.NewEthereum(db, keyManager, UseUPnP, OutboundPort, MaxPeer) + clientIdentity := utils.NewClientIdentity(ClientIdentifier, Version, Identifier) + + ethereum := utils.NewEthereum(db, clientIdentity, keyManager, UseUPnP, OutboundPort, MaxPeer) if ShowGenesis { utils.ShowGenesis(ethereum) @@ -46,7 +54,7 @@ func main() { utils.StartRpc(ethereum, RpcPort) } - gui := NewWindow(ethereum, KeyRing, LogLevel) + gui := NewWindow(ethereum, config, clientIdentity, KeyRing, LogLevel) utils.RegisterInterrupt(func(os.Signal) { gui.Stop() |