aboutsummaryrefslogtreecommitdiffstats
path: root/ethereal/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'ethereal/main.go')
-rw-r--r--ethereal/main.go12
1 files changed, 8 insertions, 4 deletions
diff --git a/ethereal/main.go b/ethereal/main.go
index 10571be7b..5dfab4c45 100644
--- a/ethereal/main.go
+++ b/ethereal/main.go
@@ -8,10 +8,12 @@ import (
)
func main() {
- qml.Init(nil)
-
runtime.GOMAXPROCS(runtime.NumCPU())
+ utils.HandleInterrupt()
+
+ qml.Init(nil)
+
// precedence: code-internal flag default < config file < environment variables < command line
Init() // parsing command line
utils.InitConfig(ConfigFile, Datadir, Identifier, "ETH")
@@ -33,8 +35,10 @@ func main() {
utils.StartRpc(ethereum, RpcPort)
}
- utils.StartEthereum(ethereum, UseSeed)
-
gui := ethui.New(ethereum, LogLevel)
gui.Start(AssetPath)
+
+ utils.StartEthereum(ethereum, UseSeed)
+
+
}