From 26e21f36ae6824b2fac88775b91829d66318abb0 Mon Sep 17 00:00:00 2001 From: Sally MacFarlane Date: Wed, 20 Sep 2023 09:39:22 +1000 Subject: [PATCH] update beacon root again [skip ci] Signed-off-by: Sally MacFarlane --- .../besu/ethereum/mainnet/ParentBeaconBlockRootHelper.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ethereum/core/src/main/java/org/hyperledger/besu/ethereum/mainnet/ParentBeaconBlockRootHelper.java b/ethereum/core/src/main/java/org/hyperledger/besu/ethereum/mainnet/ParentBeaconBlockRootHelper.java index 669815f7d52..d5252a06728 100644 --- a/ethereum/core/src/main/java/org/hyperledger/besu/ethereum/mainnet/ParentBeaconBlockRootHelper.java +++ b/ethereum/core/src/main/java/org/hyperledger/besu/ethereum/mainnet/ParentBeaconBlockRootHelper.java @@ -24,10 +24,10 @@ /** A helper class to store the parent beacon block root. */ public interface ParentBeaconBlockRootHelper { - // Modulus use to for the timestamp to store the root + // Modulus to use for the timestamp to store the root public static final long HISTORICAL_ROOTS_MODULUS = 8191; public static final Address BEACON_ROOTS_ADDRESS = - Address.fromHexString("0xBEaC020001c6C8B69E5257f4754e46e25f5dc9cB"); + Address.fromHexString("0xbEAC020008aFF7331c0A389CB2AAb67597567d7a"); static void storeParentBeaconBlockRoot( final WorldUpdater worldUpdater, final long timestamp, final Bytes32 root) {