2014-06-23 11:20:59 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/ethereum/go-ethereum/ethereal/ui"
|
|
|
|
"github.com/ethereum/go-ethereum/utils"
|
|
|
|
"github.com/go-qml/qml"
|
|
|
|
"runtime"
|
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
runtime.GOMAXPROCS(runtime.NumCPU())
|
|
|
|
|
2014-06-26 09:47:45 +00:00
|
|
|
utils.HandleInterrupt()
|
|
|
|
|
|
|
|
qml.Init(nil)
|
|
|
|
|
2014-06-23 11:20:59 +00:00
|
|
|
// precedence: code-internal flag default < config file < environment variables < command line
|
|
|
|
Init() // parsing command line
|
|
|
|
utils.InitConfig(ConfigFile, Datadir, Identifier, "ETH")
|
|
|
|
|
|
|
|
utils.InitDataDir(Datadir)
|
|
|
|
|
|
|
|
utils.InitLogging(Datadir, LogFile, LogLevel, DebugFile)
|
|
|
|
|
|
|
|
ethereum := utils.NewEthereum(UseUPnP, OutboundPort, MaxPeer)
|
|
|
|
|
|
|
|
// create, import, export keys
|
|
|
|
utils.KeyTasks(GenAddr, ImportKey, ExportKey, NonInteractive)
|
|
|
|
|
|
|
|
if ShowGenesis {
|
|
|
|
utils.ShowGenesis(ethereum)
|
|
|
|
}
|
|
|
|
|
|
|
|
if StartRpc {
|
|
|
|
utils.StartRpc(ethereum, RpcPort)
|
|
|
|
}
|
|
|
|
|
2014-06-23 11:38:23 +00:00
|
|
|
gui := ethui.New(ethereum, LogLevel)
|
2014-06-23 11:20:59 +00:00
|
|
|
gui.Start(AssetPath)
|
2014-06-26 09:47:45 +00:00
|
|
|
|
|
|
|
utils.StartEthereum(ethereum, UseSeed)
|
|
|
|
|
|
|
|
|
2014-06-23 11:20:59 +00:00
|
|
|
}
|