mirror of
https://github.com/fluencelabs/tendermint
synced 2025-05-04 02:52:13 +00:00
13 lines
228 B
Bash
13 lines
228 B
Bash
|
#! /bin/bash
|
||
|
set -eu
|
||
|
|
||
|
N=$1
|
||
|
|
||
|
cd "$GOPATH/src/github.com/tendermint/tendermint"
|
||
|
|
||
|
manual_peers="$(test/p2p/ip.sh 1):46656"
|
||
|
for i in $(seq 2 $N); do
|
||
|
manual_peers="$manual_peers,$(test/p2p/ip.sh $i):46656"
|
||
|
done
|
||
|
echo "$manual_peers"
|