6c2d8b2262
## Issue Addressed https://github.com/sigp/lighthouse/issues/3091 Extends https://github.com/sigp/lighthouse/pull/3062, adding pre-bellatrix block support on blinded endpoints and allowing the normal proposal flow (local payload construction) on blinded endpoints. This resulted in better fallback logic because the VC will not have to switch endpoints on failure in the BN <> Builder API, the BN can just fallback immediately and without repeating block processing that it shouldn't need to. We can also keep VC fallback from the VC<>BN API's blinded endpoint to full endpoint. ## Proposed Changes - Pre-bellatrix blocks on blinded endpoints - Add a new `PayloadCache` to the execution layer - Better fallback-from-builder logic ## Todos - [x] Remove VC transition logic - [x] Add logic to only enable builder flow after Merge transition finalization - [x] Tests - [x] Fix metrics - [x] Rustdocs Co-authored-by: Mac L <mjladson@pm.me> Co-authored-by: realbigsean <sean@sigmaprime.io>
126 lines
3.3 KiB
Bash
Executable File
126 lines
3.3 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
# Start all processes necessary to create a local testnet
|
|
|
|
set -Eeuo pipefail
|
|
|
|
source ./vars.env
|
|
|
|
# Set a higher ulimit in case we want to import 1000s of validators.
|
|
ulimit -n 65536
|
|
|
|
# VC_COUNT is defaulted in vars.env
|
|
DEBUG_LEVEL=${DEBUG_LEVEL:-info}
|
|
BUILDER_PROPOSALS=
|
|
|
|
# Get options
|
|
while getopts "v:d:ph" flag; do
|
|
case "${flag}" in
|
|
v) VC_COUNT=${OPTARG};;
|
|
d) DEBUG_LEVEL=${OPTARG};;
|
|
p) BUILDER_PROPOSALS="-p";;
|
|
h)
|
|
validators=$(( $VALIDATOR_COUNT / $BN_COUNT ))
|
|
echo "Start local testnet, defaults: 1 eth1 node, $BN_COUNT beacon nodes,"
|
|
echo "and $VC_COUNT validator clients with each vc having $validators validators."
|
|
echo
|
|
echo "usage: $0 <Options>"
|
|
echo
|
|
echo "Options:"
|
|
echo " -v: VC_COUNT default: $VC_COUNT"
|
|
echo " -d: DEBUG_LEVEL default: info"
|
|
echo " -p: enable private tx proposals"
|
|
echo " -h: this help"
|
|
exit
|
|
;;
|
|
esac
|
|
done
|
|
|
|
if (( $VC_COUNT > $BN_COUNT )); then
|
|
echo "Error $VC_COUNT is too large, must be <= BN_COUNT=$BN_COUNT"
|
|
exit
|
|
fi
|
|
|
|
# Init some constants
|
|
PID_FILE=$TESTNET_DIR/PIDS.pid
|
|
LOG_DIR=$TESTNET_DIR
|
|
|
|
# Stop local testnet and remove $PID_FILE
|
|
./stop_local_testnet.sh
|
|
|
|
# Clean $DATADIR and create empty log files so the
|
|
# user can "tail -f" right after starting this script
|
|
# even before its done.
|
|
./clean.sh
|
|
mkdir -p $LOG_DIR
|
|
for (( bn=1; bn<=$BN_COUNT; bn++ )); do
|
|
touch $LOG_DIR/beacon_node_$bn.log
|
|
done
|
|
for (( vc=1; vc<=$VC_COUNT; vc++ )); do
|
|
touch $LOG_DIR/validator_node_$vc.log
|
|
done
|
|
|
|
# Sleep with a message
|
|
sleeping() {
|
|
echo sleeping $1
|
|
sleep $1
|
|
}
|
|
|
|
# Execute the command with logs saved to a file.
|
|
#
|
|
# First parameter is log file name
|
|
# Second parameter is executable name
|
|
# Remaining parameters are passed to executable
|
|
execute_command() {
|
|
LOG_NAME=$1
|
|
EX_NAME=$2
|
|
shift
|
|
shift
|
|
CMD="$EX_NAME $@ >> $LOG_DIR/$LOG_NAME 2>&1"
|
|
echo "executing: $CMD"
|
|
echo "$CMD" > "$LOG_DIR/$LOG_NAME"
|
|
eval "$CMD &"
|
|
}
|
|
|
|
# Execute the command with logs saved to a file
|
|
# and is PID is saved to $PID_FILE.
|
|
#
|
|
# First parameter is log file name
|
|
# Second parameter is executable name
|
|
# Remaining parameters are passed to executable
|
|
execute_command_add_PID() {
|
|
execute_command $@
|
|
echo "$!" >> $PID_FILE
|
|
}
|
|
|
|
# Start ganache, setup things up and start the bootnode.
|
|
# The delays are necessary, hopefully there is a better way :(
|
|
|
|
# Delay to let ganache to get started
|
|
execute_command_add_PID ganache_test_node.log ./ganache_test_node.sh
|
|
sleeping 10
|
|
|
|
# Setup data
|
|
echo "executing: ./setup.sh >> $LOG_DIR/setup.log"
|
|
./setup.sh >> $LOG_DIR/setup.log 2>&1
|
|
|
|
# Delay to let boot_enr.yaml to be created
|
|
execute_command_add_PID bootnode.log ./bootnode.sh
|
|
sleeping 1
|
|
|
|
# Start beacon nodes
|
|
BN_udp_tcp_base=9000
|
|
BN_http_port_base=8000
|
|
|
|
(( $VC_COUNT < $BN_COUNT )) && SAS=-s || SAS=
|
|
|
|
for (( bn=1; bn<=$BN_COUNT; bn++ )); do
|
|
execute_command_add_PID beacon_node_$bn.log ./beacon_node.sh $SAS -d $DEBUG_LEVEL $DATADIR/node_$bn $((BN_udp_tcp_base + $bn)) $((BN_http_port_base + $bn))
|
|
done
|
|
|
|
# Start requested number of validator clients
|
|
for (( vc=1; vc<=$VC_COUNT; vc++ )); do
|
|
execute_command_add_PID validator_node_$vc.log ./validator_client.sh $BUILDER_PROPOSALS -d $DEBUG_LEVEL $DATADIR/node_$vc http://localhost:$((BN_http_port_base + $vc))
|
|
done
|
|
|
|
echo "Started!"
|