aboutsummaryrefslogtreecommitdiffstats
path: root/cmd/mist
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2015-03-15 06:37:21 +0800
committerobscuren <geffobscura@gmail.com>2015-03-15 06:37:21 +0800
commitd9966d615813130c8d31b3b10a59d43d00fd9943 (patch)
treeb5a196dd1ef20050160eb384c876ccaba1c4eebf /cmd/mist
parent12cee1377f8795608bae3cad38ee22c032b3b865 (diff)
parent67f8f83a1ba2a4dbd0f6f2fd075bb440f5c420ad (diff)
downloaddexon-d9966d615813130c8d31b3b10a59d43d00fd9943.tar
dexon-d9966d615813130c8d31b3b10a59d43d00fd9943.tar.gz
dexon-d9966d615813130c8d31b3b10a59d43d00fd9943.tar.bz2
dexon-d9966d615813130c8d31b3b10a59d43d00fd9943.tar.lz
dexon-d9966d615813130c8d31b3b10a59d43d00fd9943.tar.xz
dexon-d9966d615813130c8d31b3b10a59d43d00fd9943.tar.zst
dexon-d9966d615813130c8d31b3b10a59d43d00fd9943.zip
merge
Diffstat (limited to 'cmd/mist')
-rw-r--r--cmd/mist/main.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/cmd/mist/main.go b/cmd/mist/main.go
index 9a773e33a..4116783c9 100644
--- a/cmd/mist/main.go
+++ b/cmd/mist/main.go
@@ -28,6 +28,7 @@ import (
"github.com/codegangsta/cli"
"github.com/ethereum/go-ethereum/cmd/utils"
+ "github.com/ethereum/go-ethereum/eth"
"github.com/ethereum/go-ethereum/ethutil"
"github.com/ethereum/go-ethereum/logger"
"github.com/ethereum/go-ethereum/ui/qt/webengine"
@@ -95,7 +96,8 @@ func run(ctx *cli.Context) {
tstart := time.Now()
// TODO: show qml popup instead of exiting if initialization fails.
- ethereum, err := utils.GetEthereum(ClientIdentifier, Version, ctx)
+ cfg := utils.MakeEthConfig(ClientIdentifier, Version, ctx)
+ ethereum, err := eth.New(cfg)
if err != nil {
utils.Fatalf("%v", err)
}