diff options
author | obscuren <geffobscura@gmail.com> | 2015-03-09 20:50:05 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2015-03-09 20:50:05 +0800 |
commit | 20741a96ac6dc824bcc7d67e7c966fa65cbb2faf (patch) | |
tree | bf72d48cca05c1847043b450ff04e92368af8a36 /cmd/mist/gui.go | |
parent | 738d6e20f2a229aab15b767cb8ca2d2f9c2f9aa8 (diff) | |
download | dexon-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.go | 2 |
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, |