Remove some confusing code duplication; Use multiple nodes by default in the network sim
This commit is contained in:
parent
2fca9465e7
commit
93336daf7f
|
@ -5,18 +5,11 @@ set -euo pipefail
|
|||
# Read in variables
|
||||
. "$(dirname "$0")/vars.sh"
|
||||
|
||||
# Set a default value for the env vars usually supplied by nimbus Makefile
|
||||
|
||||
export NUM_VALIDATORS=${VALIDATORS:-721}
|
||||
export NUM_NODES=${NODES:-1}
|
||||
export NUM_MISSING_NODES=${MISSING_NODES:-0}
|
||||
|
||||
# Set DEPOSIT_WEB3_URL_ARG to empty to get genesis state from file, not using web3
|
||||
# export DEPOSIT_WEB3_URL_ARG=--depositWeb3Url=ws://localhost:8545
|
||||
export DEPOSIT_WEB3_URL_ARG=
|
||||
export DEPOSIT_CONTRACT_ADDRESS=0x
|
||||
|
||||
|
||||
cd "$SIM_ROOT"
|
||||
mkdir -p "$SIMULATION_DIR"
|
||||
mkdir -p "$VALIDATORS_DIR"
|
||||
|
|
|
@ -14,8 +14,8 @@ cd - &>/dev/null
|
|||
: ${SKIP_BUILDS:=""}
|
||||
: ${BUILD_OUTPUTS_DIR:="$GIT_ROOT/build"}
|
||||
|
||||
NUM_VALIDATORS=${VALIDATORS:-721}
|
||||
NUM_NODES=${NODES:-1}
|
||||
NUM_VALIDATORS=${VALIDATORS:-1000}
|
||||
NUM_NODES=${NODES:-2}
|
||||
NUM_MISSING_NODES=${MISSING_NODES:-0}
|
||||
|
||||
SIMULATION_DIR="${SIM_ROOT}/data"
|
||||
|
|
Loading…
Reference in New Issue