diff --git a/book/src/testnet-participation.md b/book/src/testnet-participation.md index aa5d94769..92a72e755 100644 --- a/book/src/testnet-participation.md +++ b/book/src/testnet-participation.md @@ -96,18 +96,18 @@ The following command will start a new validator node. If this is a `solana-install`-installation: ```bash -$ fullnode-x.sh --public-address --poll-for-new-genesis-block beta.testnet.solana.com:8001 +$ fullnode-x.sh --public-address --no-stake --poll-for-new-genesis-block beta.testnet.solana.com:8001 ``` Alternatively, the `solana-install run` command can be used to run the validator node while periodically checking for and applying software updates: ```bash -$ solana-install run fullnode-x.sh --public-address --poll-for-new-genesis-block beta.testnet.solana.com:8001 +$ solana-install run fullnode-x.sh --public-address --no-stake --poll-for-new-genesis-block beta.testnet.solana.com:8001 ``` When not using `solana-install`: ```bash -$ USE_INSTALL=1 ./multinode-demo/fullnode-x.sh --public-address --poll-for-new-genesis-block beta.testnet.solana.com:8001 +$ USE_INSTALL=1 ./multinode-demo/fullnode-x.sh --public-address --no-stake --poll-for-new-genesis-block beta.testnet.solana.com:8001 ``` Then from another console, confirm the IP address if your node is now visible in diff --git a/ci/localnet-sanity.sh b/ci/localnet-sanity.sh index e3b7d46a5..e765bc619 100755 --- a/ci/localnet-sanity.sh +++ b/ci/localnet-sanity.sh @@ -55,7 +55,7 @@ while getopts "ch?i:k:brxR" opt; do restartInterval=$OPTARG ;; b) - maybeNoLeaderRotation="--only-bootstrap-stake" + maybeNoLeaderRotation="--no-stake" ;; x) extraNodes=$((extraNodes + 1)) @@ -78,7 +78,6 @@ source scripts/configure-metrics.sh nodes=( "multinode-demo/drone.sh" "multinode-demo/bootstrap-leader.sh \ - $maybeNoLeaderRotation \ --enable-rpc-exit \ --init-complete-file init-complete-node1.log" "multinode-demo/fullnode.sh \ diff --git a/multinode-demo/common.sh b/multinode-demo/common.sh index b2c57bcf6..fa32b01e1 100644 --- a/multinode-demo/common.sh +++ b/multinode-demo/common.sh @@ -169,7 +169,7 @@ fullnode_usage() { echo fi cat < drone.log 2>&1 & - maybeNoLeaderRotation= - if ! $leaderRotation; then - maybeNoLeaderRotation="--only-bootstrap-stake" - fi maybePublicAddress= if $publicNetwork; then maybePublicAddress="--public-address" fi - ./multinode-demo/bootstrap-leader.sh $maybeNoLeaderRotation $maybePublicAddress > bootstrap-leader.log 2>&1 & + ./multinode-demo/bootstrap-leader.sh $maybePublicAddress > bootstrap-leader.log 2>&1 & ln -sTf bootstrap-leader.log fullnode.log ;; fullnode|blockstreamer) @@ -95,7 +91,7 @@ local|tar) args=() if ! $leaderRotation; then - args+=("--only-bootstrap-stake") + args+=("--no-stake") fi if $publicNetwork; then args+=("--public-address") diff --git a/net/remote/remote-sanity.sh b/net/remote/remote-sanity.sh index 9aae49be6..e5ecdfd33 100755 --- a/net/remote/remote-sanity.sh +++ b/net/remote/remote-sanity.sh @@ -133,7 +133,7 @@ echo "--- $entrypointIp: validator sanity" if $validatorSanity; then ( set -x -o pipefail - timeout 10s ./multinode-demo/fullnode-x.sh \ + timeout 10s ./multinode-demo/fullnode-x.sh --no-stake \ "$entrypointRsyncUrl" \ "$entrypointIp:8001" 2>&1 | tee validator-sanity.log ) || {