Remove move more

This commit is contained in:
Michael Vines
2020-07-23 17:46:41 -07:00
parent 3e7050983a
commit 4bc3653906
2 changed files with 2 additions and 8 deletions

View File

@@ -93,8 +93,6 @@ Operate a configured testnet
--deploy-if-newer - Only deploy if newer software is
available (requires -t or -T)
--use-move - Build the move-loader-program and add it to the cluster
--operating-mode development|softlaunch
- Specify whether or not to launch the cluster in "development" mode with all features enabled at epoch 0,
or "softlaunch" mode with some features disabled at epoch 0 (default: development)
@@ -187,7 +185,7 @@ build() {
$MAYBE_DOCKER bash -c "
set -ex
scripts/cargo-install-all.sh farf \"$buildVariant\" \"$maybeUseMove\"
scripts/cargo-install-all.sh farf \"$buildVariant\"
"
)
echo "Build took $SECONDS seconds"
@@ -746,7 +744,6 @@ maybeWaitForSupermajority=""
debugBuild=false
doBuild=true
gpuMode=auto
maybeUseMove=""
netemPartition=""
netemConfig=""
netemConfigFile=""
@@ -826,9 +823,6 @@ while [[ -n $1 ]]; do
elif [[ $1 = --debug ]]; then
debugBuild=true
shift 1
elif [[ $1 = --use-move ]]; then
maybeUseMove=$1
shift 1
elif [[ $1 = --partition ]]; then
netemPartition=$2
shift 2