mirror of
https://github.com/status-im/nimbus-eth2.git
synced 2025-02-23 03:38:21 +00:00
multinet: script fixes
This commit is contained in:
parent
ff0281c9db
commit
5a1a878bbd
@ -10,16 +10,16 @@ type "$MULTITAIL" &>/dev/null || USE_MULTITAIL="no"
|
||||
if [ "$USE_MULTITAIL" != "no" ]; then
|
||||
COMMANDS=()
|
||||
# "multitail" closes the corresponding panel when a command exits, so let's make sure it doesn't exit
|
||||
COMMANDS+=( " -cT ansi -t 'nimbus' -l './run_nimbus.sh 0; echo [node execution completed]; while true; do sleep 100; done'" )
|
||||
COMMANDS+=( " -cT ansi -t 'trinity' -l 'sleep 3; ./run_trinity.sh; echo [node execution completed]; while true; do sleep 100; done'" )
|
||||
COMMANDS+=( " -cT ansi -t 'lighthouse' -l 'sleep 3; ./run_lighthouse.sh; echo [node execution completed]; while true; do sleep 100; done'" )
|
||||
COMMANDS+=( " -cT ansi -t 'prysm' -l 'sleep 3; ./run_prysm.sh; echo [node execution completed]; while true; do sleep 100; done'" )
|
||||
COMMANDS+=( " -cT ansi -t 'lodestar' -l 'sleep 3; ./run_lodestar.sh; echo [node execution completed]; while true; do sleep 100; done'" )
|
||||
COMMANDS+=( " -cT ansi -t 'nimbus' -l './run_nimbus.sh 10 5; echo [node execution completed]; while true; do sleep 100; done'" )
|
||||
COMMANDS+=( " -cT ansi -t 'trinity' -l 'sleep 3; ./run_trinity.sh 0 5; echo [node execution completed]; while true; do sleep 100; done'" )
|
||||
COMMANDS+=( " -cT ansi -t 'lighthouse' -l 'sleep 3; ./run_lighthouse.sh 5 5; echo [node execution completed]; while true; do sleep 100; done'" )
|
||||
COMMANDS+=( " -cT ansi -t 'prysm' -l 'sleep 3; ./run_prysm.sh 15 5; echo [node execution completed]; while true; do sleep 100; done'" )
|
||||
COMMANDS+=( " -cT ansi -t 'lodestar' -l 'sleep 3; ./run_lodestar.sh 20 5; echo [node execution completed]; while true; do sleep 100; done'" )
|
||||
eval $MULTITAIL -s 3 -M 0 -x \"Multichain\" "${COMMANDS[@]}"
|
||||
else
|
||||
trap 'kill -9 -- -$$' SIGINT EXIT SIGTERM
|
||||
|
||||
./run_nimbus.sh 0 &
|
||||
./run_nimbus.sh &
|
||||
sleep 2
|
||||
./run_trinity.sh &
|
||||
./run_lighthouse.sh &
|
||||
|
@ -70,6 +70,6 @@ cd "$SRCDIR/target/release"
|
||||
# fresh start!
|
||||
rm -rf ~/.lighthouse
|
||||
|
||||
./beacon_node --libp2p-addresses="$(cat ../data/bootstrap_nodes.txt)" testnet --spec minimal quick $VALIDATORS_TOTAL $GENESIS_TIME &
|
||||
./beacon_node --libp2p-addresses="/ip4/127.0.0.1/tcp/50000" testnet --spec minimal quick $VALIDATORS_TOTAL $GENESIS_TIME &
|
||||
|
||||
./validator_client testnet -b insecure $VALIDATORS_START $VALIDATORS_NUM
|
||||
|
@ -36,10 +36,11 @@ set -x
|
||||
|
||||
cd "$SRCDIR"
|
||||
|
||||
rm -rf /tmp/beacon-prysm
|
||||
|
||||
"$(bazel info bazel-bin)/beacon-chain/${OS}_stripped/beacon-chain" \
|
||||
--datadir /tmp/beacon \
|
||||
--datadir /tmp/beacon-prysm \
|
||||
--pprof --verbosity=debug \
|
||||
--clear-db \
|
||||
--bootstrap-node= \
|
||||
--peer=$(cat ../data/bootstrap_nodes.txt) \
|
||||
--interop-eth1data-votes \
|
||||
|
Loading…
x
Reference in New Issue
Block a user