Correct blockstreamer node args
This commit is contained in:
parent
586fb15c2c
commit
0139e5db21
|
@ -98,7 +98,11 @@ local|tar)
|
|||
export SOLANA_CUDA=1
|
||||
fi
|
||||
|
||||
args=()
|
||||
args=(
|
||||
"$entrypointIp":~/solana "$entrypointIp:8001"
|
||||
--gossip-port 8001
|
||||
--rpc-port 8899
|
||||
)
|
||||
if [[ $nodeType = blockstreamer ]]; then
|
||||
args+=(
|
||||
--blockstream /tmp/solana-blockstream.sock
|
||||
|
@ -106,7 +110,6 @@ local|tar)
|
|||
--stake 0
|
||||
)
|
||||
else
|
||||
args+=("$entrypointIp":~/solana "$entrypointIp:8001")
|
||||
if $leaderRotation; then
|
||||
args+=("--stake" "$stake")
|
||||
else
|
||||
|
@ -115,11 +118,6 @@ local|tar)
|
|||
args+=(--enable-rpc-exit)
|
||||
fi
|
||||
|
||||
args+=(
|
||||
--gossip-port 8001
|
||||
--rpc-port 8899
|
||||
)
|
||||
|
||||
set -x
|
||||
if [[ $skipSetup != true ]]; then
|
||||
./multinode-demo/clear-fullnode-config.sh
|
||||
|
|
Loading…
Reference in New Issue