diff options
author | zelig <viktor.tron@gmail.com> | 2015-03-18 15:44:58 +0800 |
---|---|---|
committer | zelig <viktor.tron@gmail.com> | 2015-03-18 15:44:58 +0800 |
commit | b6aa88c099c16b38f0aebc749f7c95170426f787 (patch) | |
tree | e6f47c8e858add8e5d42a6452730e4771b336c4c /cmd/mist | |
parent | 7dbbe1bedce449edfdc54da1af05d3f50606856a (diff) | |
download | go-tangerine-b6aa88c099c16b38f0aebc749f7c95170426f787.tar.gz 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')
-rw-r--r-- | cmd/mist/main.go | 4 |
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, } } |