aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMaran <maran.hidskes@gmail.com>2014-05-12 23:23:14 +0800
committerMaran <maran.hidskes@gmail.com>2014-05-12 23:23:14 +0800
commit618f52312495845f6682c7ff81a3997beee8b15e (patch)
tree8ecfaffc235c7f01008c8b3c52f2de2c9fbc78f2
parentcf7ab072644c9427501f9a29d7ad5c5492edf062 (diff)
downloadgo-tangerine-618f52312495845f6682c7ff81a3997beee8b15e.tar
go-tangerine-618f52312495845f6682c7ff81a3997beee8b15e.tar.gz
go-tangerine-618f52312495845f6682c7ff81a3997beee8b15e.tar.bz2
go-tangerine-618f52312495845f6682c7ff81a3997beee8b15e.tar.lz
go-tangerine-618f52312495845f6682c7ff81a3997beee8b15e.tar.xz
go-tangerine-618f52312495845f6682c7ff81a3997beee8b15e.tar.zst
go-tangerine-618f52312495845f6682c7ff81a3997beee8b15e.zip
Actually start the Ethereum server on starting the GUI
-rw-r--r--ethereal/ethereum.go6
1 files changed, 6 insertions, 0 deletions
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()
}