mirror of
https://github.com/fluencelabs/tendermint
synced 2025-05-14 15:51:20 +00:00
* Switch ports 466xx to be 266xx This is done so the default ports aren't in the linux kernel's default ephemeral port range. * Update ABCI import * Bump cache on circleci * Get more verbose output for debugging * Bump abci dependency * Fix accidental change of a block header's hash * pin abci release
14 lines
304 B
Bash
14 lines
304 B
Bash
#! /bin/bash
|
|
set -eu
|
|
|
|
N=$1
|
|
DOCKER_IMAGE=$2
|
|
|
|
cd "$GOPATH/src/github.com/tendermint/tendermint"
|
|
|
|
persistent_peers="$(test/p2p/ip_plus_id.sh 1 $DOCKER_IMAGE):26656"
|
|
for i in $(seq 2 $N); do
|
|
persistent_peers="$persistent_peers,$(test/p2p/ip_plus_id.sh $i $DOCKER_IMAGE):26656"
|
|
done
|
|
echo "$persistent_peers"
|