do not use mask in testnet cmd (#1451)

fix node ids
This commit is contained in:
Anton Kaliaev 2018-04-11 20:53:33 +02:00 committed by GitHub
parent 0323b03daf
commit 1db2224241
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 2 deletions

View File

@ -136,8 +136,7 @@ func hostnameOrIP(i int) string {
os.Exit(1)
}
ip = ip.Mask(ip.DefaultMask())
for j := 0; j <= i; j++ {
for j := 0; j < i; j++ {
ip[3]++
}
return ip.String()
@ -149,6 +148,8 @@ func hostnameOrIP(i int) string {
func populatePersistentPeersInConfigAndWriteIt(config *cfg.Config) error {
persistentPeers := make([]string, nValidators+nNonValidators)
for i := 0; i < nValidators+nNonValidators; i++ {
nodeDir := filepath.Join(outputDir, cmn.Fmt("%s%d", nodeDirPrefix, i))
config.SetRoot(nodeDir)
nodeKey, err := p2p.LoadNodeKey(config.NodeKeyFile())
if err != nil {
return err