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