mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-05-21 23:39:26 +00:00
Actually start the Ethereum server on starting the GUI
This commit is contained in:
parent
cf7ab07264
commit
618f523124
1 changed files with 6 additions and 0 deletions
|
|
@ -110,5 +110,11 @@ func main() {
|
||||||
ethereum.MaxPeers = MaxPeer
|
ethereum.MaxPeers = MaxPeer
|
||||||
|
|
||||||
gui := ethui.New(ethereum)
|
gui := ethui.New(ethereum)
|
||||||
|
|
||||||
|
ethereum.Start(UseSeed)
|
||||||
|
|
||||||
gui.Start(AssetPath)
|
gui.Start(AssetPath)
|
||||||
|
|
||||||
|
// Wait for shutdown
|
||||||
|
ethereum.WaitForShutdown()
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue