From 618f52312495845f6682c7ff81a3997beee8b15e Mon Sep 17 00:00:00 2001 From: Maran Date: Mon, 12 May 2014 17:23:14 +0200 Subject: [PATCH] Actually start the Ethereum server on starting the GUI --- ethereal/ethereum.go | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/ethereal/ethereum.go b/ethereal/ethereum.go index 8b8889e37..1a6ab0044 100644 --- a/ethereal/ethereum.go +++ b/ethereal/ethereum.go @@ -110,5 +110,11 @@ func main() { ethereum.MaxPeers = MaxPeer gui := ethui.New(ethereum) + + ethereum.Start(UseSeed) + gui.Start(AssetPath) + + // Wait for shutdown + ethereum.WaitForShutdown() }