Replace stale --no-signer usage with --no-voting
This commit is contained in:
parent
ebd540972d
commit
242bcf44db
@ -33,7 +33,7 @@ while [[ ${1:0:1} = - ]]; do
|
|||||||
elif [[ $1 = --public-address ]]; then
|
elif [[ $1 = --public-address ]]; then
|
||||||
extra_fullnode_args+=("$1")
|
extra_fullnode_args+=("$1")
|
||||||
shift
|
shift
|
||||||
elif [[ $1 = --no-signer ]]; then
|
elif [[ $1 = --no-voting ]]; then
|
||||||
extra_fullnode_args+=("$1")
|
extra_fullnode_args+=("$1")
|
||||||
shift
|
shift
|
||||||
elif [[ $1 = --rpc-port ]]; then
|
elif [[ $1 = --rpc-port ]]; then
|
||||||
|
@ -177,7 +177,7 @@ fullnode_usage() {
|
|||||||
echo
|
echo
|
||||||
fi
|
fi
|
||||||
cat <<EOF
|
cat <<EOF
|
||||||
usage: $0 [-x] [--blockstream PATH] [--init-complete-file FILE] [--only-bootstrap-stake] [--no-signer] [--rpc-port port] [rsync network path to bootstrap leader configuration] [network entry point]
|
usage: $0 [-x] [--blockstream PATH] [--init-complete-file FILE] [--only-bootstrap-stake] [--no-voting] [--rpc-port port] [rsync network path to bootstrap leader configuration] [network entry point]
|
||||||
|
|
||||||
Start a full node on the specified network
|
Start a full node on the specified network
|
||||||
|
|
||||||
@ -188,7 +188,7 @@ Start a full node on the specified network
|
|||||||
--init-complete-file FILE - create this file, if it doesn't already exist, once node initialization is complete
|
--init-complete-file FILE - create this file, if it doesn't already exist, once node initialization is complete
|
||||||
--only-bootstrap-stake - Only stake the bootstrap leader, effectively disabling leader rotation
|
--only-bootstrap-stake - Only stake the bootstrap leader, effectively disabling leader rotation
|
||||||
--public-address - advertise public machine address in gossip. By default the local machine address is advertised
|
--public-address - advertise public machine address in gossip. By default the local machine address is advertised
|
||||||
--no-signer - start node without vote signer
|
--no-voting - start node without vote signer
|
||||||
--rpc-port port - custom RPC port for this node
|
--rpc-port port - custom RPC port for this node
|
||||||
|
|
||||||
EOF
|
EOF
|
||||||
|
@ -42,7 +42,7 @@ while [[ ${1:0:1} = - ]]; do
|
|||||||
elif [[ $1 = --public-address ]]; then
|
elif [[ $1 = --public-address ]]; then
|
||||||
extra_fullnode_args+=("$1")
|
extra_fullnode_args+=("$1")
|
||||||
shift
|
shift
|
||||||
elif [[ $1 = --no-signer ]]; then
|
elif [[ $1 = --no-voting ]]; then
|
||||||
extra_fullnode_args+=("$1")
|
extra_fullnode_args+=("$1")
|
||||||
shift
|
shift
|
||||||
elif [[ $1 = --rpc-port ]]; then
|
elif [[ $1 = --rpc-port ]]; then
|
||||||
|
@ -104,7 +104,7 @@ local|tar)
|
|||||||
if [[ $nodeType = blockstreamer ]]; then
|
if [[ $nodeType = blockstreamer ]]; then
|
||||||
args+=(
|
args+=(
|
||||||
--blockstream /tmp/solana-blockstream.sock
|
--blockstream /tmp/solana-blockstream.sock
|
||||||
--no-signer
|
--no-voting
|
||||||
)
|
)
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user