From 6806ffe1c8b67b35f543358de7aeeedeeaea4212 Mon Sep 17 00:00:00 2001 From: Zahary Karadjov Date: Wed, 14 Apr 2021 21:48:14 +0300 Subject: [PATCH] Remove some unused parameters (part 2) --- scripts/launch_local_testnet.sh | 1 - scripts/reset_testnet.sh | 1 - 2 files changed, 2 deletions(-) diff --git a/scripts/launch_local_testnet.sh b/scripts/launch_local_testnet.sh index d8d70eb6c..436f486a9 100755 --- a/scripts/launch_local_testnet.sh +++ b/scripts/launch_local_testnet.sh @@ -231,7 +231,6 @@ if [[ $USE_GANACHE == "0" ]]; then --data-dir="${DATA_DIR}" \ --deposits-file="${DEPOSITS_FILE}" \ --total-validators=${TOTAL_VALIDATORS} \ - --last-user-validator=${USER_VALIDATORS} \ --output-genesis="${NETWORK_DIR}/genesis.ssz" \ --output-bootstrap-file="${NETWORK_DIR}/bootstrap_nodes.txt" \ --bootstrap-address=${BOOTSTRAP_IP} \ diff --git a/scripts/reset_testnet.sh b/scripts/reset_testnet.sh index e20e3c9b7..8c3373f22 100755 --- a/scripts/reset_testnet.sh +++ b/scripts/reset_testnet.sh @@ -93,7 +93,6 @@ make build --data-dir="$DATA_DIR_ABS" \ --validators-dir="$VALIDATORS_DIR_ABS" \ --total-validators=$TOTAL_VALIDATORS \ - --last-user-validator=$USER_VALIDATORS \ --output-genesis="$NETWORK_DIR_ABS/genesis.ssz" \ --output-bootstrap-file="$NETWORK_DIR_ABS/bootstrap_nodes.txt" \ --bootstrap-address=$BOOTSTRAP_IP \