Use same gossip port for all testnet nodes

This commit is contained in:
Michael Vines 2019-03-21 23:56:08 -07:00 committed by Grimes
parent 4542a7042a
commit 0a5b6154e8
2 changed files with 4 additions and 0 deletions

View File

@ -49,6 +49,9 @@ while [[ ${1:0:1} = - ]]; do
elif [[ $1 = --no-voting ]]; then
extra_fullnode_args+=("$1")
shift
elif [[ $1 = --gossip-port ]]; then
gossip_port=$2
shift 2
elif [[ $1 = --rpc-port ]]; then
extra_fullnode_args+=("$1" "$2")
shift 2

View File

@ -109,6 +109,7 @@ local|tar)
fi
args+=(
--gossip-port 8001
--rpc-port 8899
)