diff options
author | Maran <maran.hidskes@gmail.com> | 2014-05-12 23:23:14 +0800 |
---|---|---|
committer | Maran <maran.hidskes@gmail.com> | 2014-05-12 23:23:14 +0800 |
commit | 618f52312495845f6682c7ff81a3997beee8b15e (patch) | |
tree | 8ecfaffc235c7f01008c8b3c52f2de2c9fbc78f2 /ethereal | |
parent | cf7ab072644c9427501f9a29d7ad5c5492edf062 (diff) | |
download | go-tangerine-618f52312495845f6682c7ff81a3997beee8b15e.tar.gz go-tangerine-618f52312495845f6682c7ff81a3997beee8b15e.tar.zst go-tangerine-618f52312495845f6682c7ff81a3997beee8b15e.zip |
Actually start the Ethereum server on starting the GUI
Diffstat (limited to 'ethereal')
-rw-r--r-- | ethereal/ethereum.go | 6 |
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() } |