rename GETH_EIP_4844_BINARY > GETH_DENEB_BINARY (#4729)

This commit is contained in:
Etan Kissling 2023-03-12 02:47:24 +01:00 committed by GitHub
parent f0dcbaacff
commit 2f006d31e7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 5 deletions

View File

@ -10,7 +10,7 @@ source "${SCRIPTS_DIR}/bash_utils.sh"
: ${CURL_BINARY:="curl"}
: ${STABLE_GETH_BINARY:="${BUILD_DIR}/downloads/geth"}
: ${GETH_CAPELLA_BINARY:="${BUILD_DIR}/downloads/geth_capella"}
: ${GETH_EIP_4844_BINARY:="${BUILD_DIR}/downloads/geth_eip4844"}
: ${GETH_DENEB_BINARY:="${BUILD_DIR}/downloads/geth_deneb"}
download_geth_stable() {
if [[ ! -e "${STABLE_GETH_BINARY}" ]]; then
@ -103,8 +103,8 @@ download_geth_capella() {
download_status_geth_binary withdrawals-timestamp "$GETH_CAPELLA_BINARY"
}
download_geth_eip_4844() {
download_status_geth_binary eip-4844 "$GETH_EIP_4844_BINARY"
download_geth_deneb() {
download_status_geth_binary eip-4844 "$GETH_DENEB_BINARY"
}
fi

View File

@ -454,8 +454,8 @@ if [[ "${RUN_GETH}" == "1" ]]; then
source "${SCRIPTS_DIR}/geth_binaries.sh"
if [[ $DENEB_FORK_EPOCH -lt $STOP_AT_EPOCH ]]; then
download_geth_eip_4844
GETH_BINARY="$GETH_EIP_4844_BINARY"
download_geth_deneb
GETH_BINARY="$GETH_DENEB_BINARY"
elif [[ $CAPELLA_FORK_EPOCH -lt $STOP_AT_EPOCH ]]; then
download_geth_capella
GETH_BINARY="$GETH_CAPELLA_BINARY"