aboutsummaryrefslogtreecommitdiffstats
path: root/cmd/geth
diff options
context:
space:
mode:
authorPéter Szilágyi <peterke@gmail.com>2017-05-10 22:51:52 +0800
committerPéter Szilágyi <peterke@gmail.com>2017-05-10 22:51:52 +0800
commit3b3989de6a1db98eb5290d6a14c5354da5d7d76a (patch)
tree0ce8858a0526c7c441e4cfdf3979c097b6078fc0 /cmd/geth
parent40976ea1a009f1358bcc6f85db97efd61868dd4f (diff)
downloaddexon-3b3989de6a1db98eb5290d6a14c5354da5d7d76a.tar.gz
dexon-3b3989de6a1db98eb5290d6a14c5354da5d7d76a.tar.zst
dexon-3b3989de6a1db98eb5290d6a14c5354da5d7d76a.zip
cmd, node: support different bootnodes, fix default light port
Diffstat (limited to 'cmd/geth')
-rw-r--r--cmd/geth/main.go2
-rw-r--r--cmd/geth/usage.go2
2 files changed, 4 insertions, 0 deletions
diff --git a/cmd/geth/main.go b/cmd/geth/main.go
index 7d9760cc9..56652f3bd 100644
--- a/cmd/geth/main.go
+++ b/cmd/geth/main.go
@@ -55,6 +55,8 @@ var (
utils.UnlockedAccountFlag,
utils.PasswordFileFlag,
utils.BootnodesFlag,
+ utils.BootnodesV4Flag,
+ utils.BootnodesV5Flag,
utils.DataDirFlag,
utils.KeyStoreDirFlag,
utils.NoUSBFlag,
diff --git a/cmd/geth/usage.go b/cmd/geth/usage.go
index 5012a4b38..c719a87b1 100644
--- a/cmd/geth/usage.go
+++ b/cmd/geth/usage.go
@@ -129,6 +129,8 @@ var AppHelpFlagGroups = []flagGroup{
Name: "NETWORKING",
Flags: []cli.Flag{
utils.BootnodesFlag,
+ utils.BootnodesV4Flag,
+ utils.BootnodesV5Flag,
utils.ListenPortFlag,
utils.MaxPeersFlag,
utils.MaxPendingPeersFlag,