aboutsummaryrefslogtreecommitdiffstats
path: root/cmd/mist/main.go
diff options
context:
space:
mode:
authorzelig <viktor.tron@gmail.com>2015-03-18 15:44:58 +0800
committerzelig <viktor.tron@gmail.com>2015-03-18 15:44:58 +0800
commitb6aa88c099c16b38f0aebc749f7c95170426f787 (patch)
treee6f47c8e858add8e5d42a6452730e4771b336c4c /cmd/mist/main.go
parent7dbbe1bedce449edfdc54da1af05d3f50606856a (diff)
downloadgo-tangerine-b6aa88c099c16b38f0aebc749f7c95170426f787.tar
go-tangerine-b6aa88c099c16b38f0aebc749f7c95170426f787.tar.gz
go-tangerine-b6aa88c099c16b38f0aebc749f7c95170426f787.tar.bz2
go-tangerine-b6aa88c099c16b38f0aebc749f7c95170426f787.tar.lz
go-tangerine-b6aa88c099c16b38f0aebc749f7c95170426f787.tar.xz
go-tangerine-b6aa88c099c16b38f0aebc749f7c95170426f787.tar.zst
go-tangerine-b6aa88c099c16b38f0aebc749f7c95170426f787.zip
private network support
- protocolversion, networkid global int flags to cli and mist - fix bug with protocolversion check using wrong db - log protocolversion & networkid in backend
Diffstat (limited to 'cmd/mist/main.go')
-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 1c51233e3..fab651b22 100644
--- a/cmd/mist/main.go
+++ b/cmd/mist/main.go
@@ -28,8 +28,8 @@ import (
"github.com/codegangsta/cli"
"github.com/ethereum/go-ethereum/cmd/utils"
- "github.com/ethereum/go-ethereum/eth"
"github.com/ethereum/go-ethereum/common"
+ "github.com/ethereum/go-ethereum/eth"
"github.com/ethereum/go-ethereum/logger"
"github.com/ethereum/go-ethereum/ui/qt/webengine"
"github.com/obscuren/qml"
@@ -66,6 +66,8 @@ func init() {
utils.RPCListenAddrFlag,
utils.RPCPortFlag,
utils.JSpathFlag,
+ utils.ProtocolVersionFlag,
+ utils.NetworkIdFlag,
}
}