Enable booting testnet validators without tower required (#19298)
This commit is contained in:
@ -307,7 +307,7 @@ startBootstrapLeader() {
|
||||
$nodeIndex \
|
||||
${#clientIpList[@]} \"$benchTpsExtraArgs\" \
|
||||
\"$genesisOptions\" \
|
||||
\"$maybeNoSnapshot $maybeSkipLedgerVerify $maybeLimitLedgerSize $maybeWaitForSupermajority $maybeAllowPrivateAddr $maybeAccountsDbSkipShrink\" \
|
||||
\"$maybeNoSnapshot $maybeSkipLedgerVerify $maybeLimitLedgerSize $maybeWaitForSupermajority $maybeAllowPrivateAddr $maybeAccountsDbSkipShrink $maybeSkipRequireTower\" \
|
||||
\"$gpuMode\" \
|
||||
\"$maybeWarpSlot\" \
|
||||
\"$waitForNodeInit\" \
|
||||
@ -378,7 +378,7 @@ startNode() {
|
||||
$nodeIndex \
|
||||
${#clientIpList[@]} \"$benchTpsExtraArgs\" \
|
||||
\"$genesisOptions\" \
|
||||
\"$maybeNoSnapshot $maybeSkipLedgerVerify $maybeLimitLedgerSize $maybeWaitForSupermajority $maybeAllowPrivateAddr $maybeAccountsDbSkipShrink\" \
|
||||
\"$maybeNoSnapshot $maybeSkipLedgerVerify $maybeLimitLedgerSize $maybeWaitForSupermajority $maybeAllowPrivateAddr $maybeAccountsDbSkipShrink $maybeSkipRequireTower\" \
|
||||
\"$gpuMode\" \
|
||||
\"$maybeWarpSlot\" \
|
||||
\"$waitForNodeInit\" \
|
||||
@ -777,6 +777,7 @@ maybeDisableAirdrops=""
|
||||
maybeWaitForSupermajority=""
|
||||
maybeAllowPrivateAddr=""
|
||||
maybeAccountsDbSkipShrink=""
|
||||
maybeSkipRequireTower=""
|
||||
debugBuild=false
|
||||
doBuild=true
|
||||
gpuMode=auto
|
||||
@ -909,6 +910,9 @@ while [[ -n $1 ]]; do
|
||||
elif [[ $1 = --accounts-db-skip-shrink ]]; then
|
||||
maybeAccountsDbSkipShrink="$1"
|
||||
shift 1
|
||||
elif [[ $1 = --skip-require-tower ]]; then
|
||||
maybeSkipRequireTower="$1"
|
||||
shift 1
|
||||
else
|
||||
usage "Unknown long option: $1"
|
||||
fi
|
||||
|
Reference in New Issue
Block a user