aboutsummaryrefslogtreecommitdiffstats
path: root/ethereal/ui/gui.go
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-04-12 00:50:31 +0800
committerobscuren <geffobscura@gmail.com>2014-04-12 00:50:31 +0800
commit3238894a3ba4767773849eabb7c0892554d32874 (patch)
tree88a09f860d3816a514ae6f0c9c88c0c39df876ca /ethereal/ui/gui.go
parent1e94cb5286067da80c3227861a836c611f01e32b (diff)
downloadgo-tangerine-3238894a3ba4767773849eabb7c0892554d32874.tar
go-tangerine-3238894a3ba4767773849eabb7c0892554d32874.tar.gz
go-tangerine-3238894a3ba4767773849eabb7c0892554d32874.tar.bz2
go-tangerine-3238894a3ba4767773849eabb7c0892554d32874.tar.lz
go-tangerine-3238894a3ba4767773849eabb7c0892554d32874.tar.xz
go-tangerine-3238894a3ba4767773849eabb7c0892554d32874.tar.zst
go-tangerine-3238894a3ba4767773849eabb7c0892554d32874.zip
Added wip debugger
Diffstat (limited to 'ethereal/ui/gui.go')
-rw-r--r--ethereal/ui/gui.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/ethereal/ui/gui.go b/ethereal/ui/gui.go
index 89736ac29..32e7edbdc 100644
--- a/ethereal/ui/gui.go
+++ b/ethereal/ui/gui.go
@@ -53,7 +53,6 @@ type Gui struct {
txDb *ethdb.LDBDatabase
addr []byte
-
}
// Create GUI, but doesn't start it
@@ -96,12 +95,13 @@ func (ui *Gui) Start(assetPath string) {
// Load the main QML interface
component, err := ui.engine.LoadFile(uiLib.AssetPath("qml/wallet.qml"))
if err != nil {
- ethutil.Config.Log.Infoln("FATAL: asset not found: you can set an alternative asset path on on the command line using option 'asset_path'")
+ ethutil.Config.Log.Infoln("FATAL: asset not found: you can set an alternative asset path on on the command line using option 'asset_path'")
panic(err)
}
ui.engine.LoadFile(uiLib.AssetPath("qml/transactions.qml"))
ui.win = component.CreateWindow(nil)
+ uiLib.win = ui.win
// Register the ui as a block processor
//ui.eth.BlockManager.SecondaryBlockProcessor = ui