diff options
author | zelig <viktor.tron@gmail.com> | 2016-12-13 16:49:02 +0800 |
---|---|---|
committer | zelig <viktor.tron@gmail.com> | 2016-12-13 19:54:13 +0800 |
commit | d44f1a77eeb208a929add38ca4234d9f2a865a26 (patch) | |
tree | d56d34589c8296fccadd9f4dce5d04a0c02a61e0 /cmd | |
parent | 418104648894c2a96e08a1666010a0b43d3a400b (diff) | |
download | dexon-d44f1a77eeb208a929add38ca4234d9f2a865a26.tar.gz dexon-d44f1a77eeb208a929add38ca4234d9f2a865a26.tar.zst dexon-d44f1a77eeb208a929add38ca4234d9f2a865a26.zip |
cmd/swarm: add default bootnodes for testnet 3
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/swarm/main.go | 19 |
1 files changed, 13 insertions, 6 deletions
diff --git a/cmd/swarm/main.go b/cmd/swarm/main.go index fb2ae8da3..e968ad4c2 100644 --- a/cmd/swarm/main.go +++ b/cmd/swarm/main.go @@ -49,8 +49,15 @@ const ( ) var ( - gitCommit string // Git SHA1 commit hash of the release (set via linker flags) - app = utils.NewApp(gitCommit, "Ethereum Swarm") + gitCommit string // Git SHA1 commit hash of the release (set via linker flags) + app = utils.NewApp(gitCommit, "Ethereum Swarm") + testbetBootNodes = []string{ + "enode://330dce4992f5ec50a4a6f9e16bf35b9d8ee739236b6530e7846fcb058ed24b666e6027513a4b921fd2ec40ff22f6ddec0937bcbc697a8937d9cde83d8fde8a06@13.79.165.39:30403", + "enode://7ea1cc1723b4d51f08f76f6380f5f9faa92232313c6568e79ab1e1a98148f7549a3f8d05b2e6f94c10796e015a224ed2e46df7033077d63a888eeec52fae6fd2@13.79.165.39:30404", + "enode://4363f21af9e94e32b3ad22d88ed04f6e5bcf9407b7cb38a61216c57bbdcb9d5c5beb4f9aac1b78049e8d3a516097f5b92fc116928e35c92e48fc9b68086b78f5@13.79.165.39:30405", + "enode://79b616c70d309b27319461219032ff7f5901c3e522bb5d5b084e4372666f7f006803387e81563bd1bb06937a4adb8efa16c0ea86e921edf49a09e58ac3a90845@13.79.165.39:30406", + "enode://83b4df39d90720193717ccd5476feca81a962a31090fc440a9085941fcbfcd765285edb00c549286be33703d9bfb2723576dc85d705c9bfe1a74ee454d61f2cc@13.79.165.39:30407", + } ) var ( @@ -103,8 +110,6 @@ var ( } ) -var defaultBootnodes = []string{} - func init() { // Override flag defaults so bzzd can run alongside geth. utils.ListenPortFlag.Value = 30399 @@ -211,13 +216,15 @@ func bzzd(ctx *cli.Context) error { stack := utils.MakeNode(ctx, clientIdentifier, gitCommit) registerBzzService(ctx, stack) utils.StartNode(stack) - + networkId := ctx.GlobalUint64(SwarmNetworkIdFlag.Name) // Add bootnodes as initial peers. if ctx.GlobalIsSet(utils.BootnodesFlag.Name) { bootnodes := strings.Split(ctx.GlobalString(utils.BootnodesFlag.Name), ",") injectBootnodes(stack.Server(), bootnodes) } else { - injectBootnodes(stack.Server(), defaultBootnodes) + if networkId == 3 { + injectBootnodes(stack.Server(), testbetBootNodes) + } } stack.Wait() |