Actually start the Ethereum server on starting the GUI

This commit is contained in:
Maran 2014-05-12 17:23:14 +02:00
parent cf7ab07264
commit 618f523124

View File

@ -110,5 +110,11 @@ func main() {
ethereum.MaxPeers = MaxPeer
gui := ethui.New(ethereum)
ethereum.Start(UseSeed)
gui.Start(AssetPath)
// Wait for shutdown
ethereum.WaitForShutdown()
}