diff --git a/multinode-demo/validator.sh b/multinode-demo/validator.sh index 4436ef1622..2cebf2a7f9 100755 --- a/multinode-demo/validator.sh +++ b/multinode-demo/validator.sh @@ -268,6 +268,10 @@ wallet() { setup_validator_accounts() { declare node_sol=$1 + if [[ -n "$SKIP_ACCOUNTS_CREATION" ]]; then + return 0 + fi + if ! wallet vote-account "$vote_account"; then if ((airdrops_enabled)); then echo "Adding $node_sol to validator identity account:" diff --git a/net/remote/remote-node.sh b/net/remote/remote-node.sh index 82923ce411..e2cc5594cb 100755 --- a/net/remote/remote-node.sh +++ b/net/remote/remote-node.sh @@ -385,7 +385,14 @@ EOF args+=(--init-complete-file "$initCompleteFile") # shellcheck disable=SC2206 # Don't want to double quote $extraNodeArgs args+=($extraNodeArgs) + + maybeSkipAccountsCreation= + if [[ $nodeIndex -le $extraPrimordialStakes ]]; then + maybeSkipAccountsCreation="export SKIP_ACCOUNTS_CREATION=1" + fi + cat >> ~/solana/on-reboot < validator.log.\$now 2>&1 & pid=\$! oom_score_adj "\$pid" 1000 @@ -397,7 +404,7 @@ EOF net/remote/remote-node-wait-init.sh 600 fi - if [[ $skipSetup != true && $nodeType != blockstreamer ]]; then + if [[ $skipSetup != true && $nodeType != blockstreamer && -z $maybeSkipAccountsCreation ]]; then # Wait for the validator to catch up to the bootstrap validator before # delegating stake to it solana --url http://"$entrypointIp":8899 catchup config/validator-identity.json