Use same gossip port for all testnet nodes

This commit is contained in:
Michael Vines
2019-03-21 23:56:08 -07:00
parent c43eecb8ca
commit 8655df0520
2 changed files with 4 additions and 0 deletions

View File

@@ -45,6 +45,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