diff options
author | obscuren <geffobscura@gmail.com> | 2014-07-02 06:13:50 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-07-02 06:13:50 +0800 |
commit | c4f9151c67b1481490978a9dca0599b3e92680d5 (patch) | |
tree | f02199cf5a2f87595937c5f8c94bda343347fa9f /ethereal/main.go | |
parent | 283532137713d20ca82d264bd105cf7cb0e47b65 (diff) | |
download | go-tangerine-c4f9151c67b1481490978a9dca0599b3e92680d5.tar go-tangerine-c4f9151c67b1481490978a9dca0599b3e92680d5.tar.gz go-tangerine-c4f9151c67b1481490978a9dca0599b3e92680d5.tar.bz2 go-tangerine-c4f9151c67b1481490978a9dca0599b3e92680d5.tar.lz go-tangerine-c4f9151c67b1481490978a9dca0599b3e92680d5.tar.xz go-tangerine-c4f9151c67b1481490978a9dca0599b3e92680d5.tar.zst go-tangerine-c4f9151c67b1481490978a9dca0599b3e92680d5.zip |
Moved files
Diffstat (limited to 'ethereal/main.go')
-rw-r--r-- | ethereal/main.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ethereal/main.go b/ethereal/main.go index 82427f088..f3f1d3140 100644 --- a/ethereal/main.go +++ b/ethereal/main.go @@ -2,7 +2,6 @@ package main import ( "github.com/ethereum/eth-go/ethlog" - "github.com/ethereum/go-ethereum/ethereal/ui" "github.com/ethereum/go-ethereum/utils" "github.com/go-qml/qml" "os" @@ -47,7 +46,7 @@ func main() { utils.StartRpc(ethereum, RpcPort) } - gui := ethui.New(ethereum, KeyRing, LogLevel) + gui := NewWindow(ethereum, KeyRing, LogLevel) utils.RegisterInterrupt(func(os.Signal) { gui.Stop() |