aboutsummaryrefslogtreecommitdiffstats
path: root/ethereal/main.go
diff options
context:
space:
mode:
authorzelig <viktor.tron@gmail.com>2014-06-27 01:41:36 +0800
committerzelig <viktor.tron@gmail.com>2014-06-27 01:48:08 +0800
commitae5ace16190d48bfe7a0364fdb0b51644518ec42 (patch)
treee676f9b43b874a13fb47f642a27bfce02e425eff /ethereal/main.go
parent648c418fcd7a88fc48032c55c2dba87f6bdad8c7 (diff)
downloaddexon-ae5ace16190d48bfe7a0364fdb0b51644518ec42.tar.gz
dexon-ae5ace16190d48bfe7a0364fdb0b51644518ec42.tar.zst
dexon-ae5ace16190d48bfe7a0364fdb0b51644518ec42.zip
go fmt
Diffstat (limited to 'ethereal/main.go')
-rw-r--r--ethereal/main.go32
1 files changed, 16 insertions, 16 deletions
diff --git a/ethereal/main.go b/ethereal/main.go
index cfd85afe7..799b50e4b 100644
--- a/ethereal/main.go
+++ b/ethereal/main.go
@@ -1,12 +1,12 @@
package main
import (
+ "github.com/ethereum/eth-go/ethlog"
"github.com/ethereum/go-ethereum/ethereal/ui"
"github.com/ethereum/go-ethereum/utils"
- "github.com/ethereum/eth-go/ethlog"
"github.com/go-qml/qml"
- "runtime"
"os"
+ "runtime"
)
func main() {
@@ -32,11 +32,11 @@ func main() {
ethereum := utils.NewEthereum(UseUPnP, OutboundPort, MaxPeer)
// create, import, export keys
- utils.KeyTasks(GenAddr, ImportKey, ExportKey, NonInteractive)
+ utils.KeyTasks(GenAddr, ImportKey, ExportKey, NonInteractive)
- if ShowGenesis {
- utils.ShowGenesis(ethereum)
- }
+ if ShowGenesis {
+ utils.ShowGenesis(ethereum)
+ }
if StartRpc {
utils.StartRpc(ethereum, RpcPort)
@@ -45,17 +45,17 @@ func main() {
gui := ethui.New(ethereum, LogLevel)
utils.RegisterInterrupt(func(os.Signal) {
- gui.Stop()
- })
+ gui.Stop()
+ })
utils.StartEthereum(ethereum, UseSeed)
- // gui blocks the main thread
- gui.Start(AssetPath)
- // we need to run the interrupt callbacks in case gui is closed
- // this skips if we got here by actual interrupt stopping the GUI
+ // gui blocks the main thread
+ gui.Start(AssetPath)
+ // we need to run the interrupt callbacks in case gui is closed
+ // this skips if we got here by actual interrupt stopping the GUI
if !interrupted {
utils.RunInterruptCallbacks(os.Interrupt)
- }
- // this blocks the thread
- ethereum.WaitForShutdown()
- ethlog.Flush()
+ }
+ // this blocks the thread
+ ethereum.WaitForShutdown()
+ ethlog.Flush()
}