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