From 2f006d31e75bb0f94083eba863151f2c8ee229ec Mon Sep 17 00:00:00 2001 From: Etan Kissling Date: Sun, 12 Mar 2023 02:47:24 +0100 Subject: [PATCH] rename `GETH_EIP_4844_BINARY` > `GETH_DENEB_BINARY` (#4729) --- scripts/geth_binaries.sh | 6 +++--- scripts/launch_local_testnet.sh | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/scripts/geth_binaries.sh b/scripts/geth_binaries.sh index afd5d8bda..b0023186f 100644 --- a/scripts/geth_binaries.sh +++ b/scripts/geth_binaries.sh @@ -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 diff --git a/scripts/launch_local_testnet.sh b/scripts/launch_local_testnet.sh index 5fbc20de9..adec89782 100755 --- a/scripts/launch_local_testnet.sh +++ b/scripts/launch_local_testnet.sh @@ -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"