aboutsummaryrefslogtreecommitdiffstats
path: root/ethereal/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'ethereal/main.go')
-rw-r--r--ethereal/main.go3
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()