diff --git a/scripts/local_testnet/clean.sh b/scripts/local_testnet/clean.sh index 192de67aec..bc4db74c61 100755 --- a/scripts/local_testnet/clean.sh +++ b/scripts/local_testnet/clean.sh @@ -6,4 +6,6 @@ source ./vars.env -rm -r $DATADIR +if [ -d $DATADIR ]; then + rm -r $DATADIR +fi diff --git a/scripts/local_testnet/setup.sh b/scripts/local_testnet/setup.sh index 8b71183540..7cd164af3f 100755 --- a/scripts/local_testnet/setup.sh +++ b/scripts/local_testnet/setup.sh @@ -10,7 +10,7 @@ source ./vars.env lcli \ --spec mainnet \ new-testnet \ - --deposit-contract-address 0000000000000000000000000000000000000000 \ + --deposit-contract-address 1234567890123456789012345678901234567890 \ --testnet-dir $TESTNET_DIR \ --min-genesis-active-validator-count $VALIDATOR_COUNT \ --force