aboutsummaryrefslogtreecommitdiffstats
path: root/cmd/mist/gui.go
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2015-03-09 20:50:05 +0800
committerobscuren <geffobscura@gmail.com>2015-03-09 20:50:05 +0800
commit20741a96ac6dc824bcc7d67e7c966fa65cbb2faf (patch)
treebf72d48cca05c1847043b450ff04e92368af8a36 /cmd/mist/gui.go
parent738d6e20f2a229aab15b767cb8ca2d2f9c2f9aa8 (diff)
downloaddexon-20741a96ac6dc824bcc7d67e7c966fa65cbb2faf.tar.gz
dexon-20741a96ac6dc824bcc7d67e7c966fa65cbb2faf.tar.zst
dexon-20741a96ac6dc824bcc7d67e7c966fa65cbb2faf.zip
Updated xeth instances to take extra param for ui.Interface
Please be aware that if any of the instances on xeth.frontend are called the program will crash due to the default, temporarily, frontend interface.
Diffstat (limited to 'cmd/mist/gui.go')
-rw-r--r--cmd/mist/gui.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/mist/gui.go b/cmd/mist/gui.go
index 869b689dd..53ca35574 100644
--- a/cmd/mist/gui.go
+++ b/cmd/mist/gui.go
@@ -88,7 +88,7 @@ func NewWindow(ethereum *eth.Ethereum, config *ethutil.ConfigManager, session st
panic(err)
}
- xeth := xeth.New(ethereum)
+ xeth := xeth.New(ethereum, nil)
gui := &Gui{eth: ethereum,
txDb: db,
xeth: xeth,