diff options
author | obscuren <geffobscura@gmail.com> | 2015-01-04 21:39:15 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2015-01-04 21:39:15 +0800 |
commit | 987119cd4adcdbc7ebfd0bbb027a0c9e2a7487e9 (patch) | |
tree | 32ff13edca8c3d9b61b303f7d314291d0f216574 /cmd/mist/gui.go | |
parent | 1b905675465d96227f1a8144fe592e76f646f559 (diff) | |
parent | 08b03afa4bb3a40d2faf6543bc884a8ece5be2a1 (diff) | |
download | dexon-987119cd4adcdbc7ebfd0bbb027a0c9e2a7487e9.tar dexon-987119cd4adcdbc7ebfd0bbb027a0c9e2a7487e9.tar.gz dexon-987119cd4adcdbc7ebfd0bbb027a0c9e2a7487e9.tar.bz2 dexon-987119cd4adcdbc7ebfd0bbb027a0c9e2a7487e9.tar.lz dexon-987119cd4adcdbc7ebfd0bbb027a0c9e2a7487e9.tar.xz dexon-987119cd4adcdbc7ebfd0bbb027a0c9e2a7487e9.tar.zst dexon-987119cd4adcdbc7ebfd0bbb027a0c9e2a7487e9.zip |
Merge branch 'poc8' into docbranch
Diffstat (limited to 'cmd/mist/gui.go')
-rw-r--r-- | cmd/mist/gui.go | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/cmd/mist/gui.go b/cmd/mist/gui.go index 98ca70b16..8e533d977 100644 --- a/cmd/mist/gui.go +++ b/cmd/mist/gui.go @@ -72,8 +72,7 @@ type Gui struct { plugins map[string]plugin - miner *miner.Miner - stdLog logger.LogSystem + miner *miner.Miner } // Create GUI, but doesn't start it @@ -113,7 +112,7 @@ func (gui *Gui) Start(assetPath string) { // Expose the eth library and the ui library to QML context.SetVar("gui", gui) context.SetVar("eth", gui.uiLib) - context.SetVar("shh", gui.whisper) + //context.SetVar("shh", gui.whisper) // Load the main QML interface data, _ := ethutil.Config.Db.Get([]byte("KeyRing")) |