From cb1357e0cc504595347ef77640e61a19b5e7cbfb Mon Sep 17 00:00:00 2001 From: Simon Dudley Date: Mon, 23 Dec 2024 10:26:49 +1000 Subject: [PATCH] Update HISTORY_STORAGE_ADDRESS and HISTORY_SERVE_WINDOW for EIP-2935 https://github.com/hyperledger/besu/issues/8061 Signed-off-by: Simon Dudley --- .../ethereum/mainnet/blockhash/PragueBlockHashProcessor.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ethereum/core/src/main/java/org/hyperledger/besu/ethereum/mainnet/blockhash/PragueBlockHashProcessor.java b/ethereum/core/src/main/java/org/hyperledger/besu/ethereum/mainnet/blockhash/PragueBlockHashProcessor.java index b6b38b37d57..d6949f10318 100644 --- a/ethereum/core/src/main/java/org/hyperledger/besu/ethereum/mainnet/blockhash/PragueBlockHashProcessor.java +++ b/ethereum/core/src/main/java/org/hyperledger/besu/ethereum/mainnet/blockhash/PragueBlockHashProcessor.java @@ -36,10 +36,10 @@ public class PragueBlockHashProcessor extends CancunBlockHashProcessor { private static final Logger LOG = LoggerFactory.getLogger(PragueBlockHashProcessor.class); public static final Address HISTORY_STORAGE_ADDRESS = - Address.fromHexString("0x0aae40965e6800cd9b1f4b05ff21581047e3f91e"); + Address.fromHexString("0x0F792be4B0c0cb4DAE440Ef133E90C0eCD48CCCC"); /** The HISTORY_SERVE_WINDOW */ - public static final long HISTORY_SERVE_WINDOW = 8192; + private static final long HISTORY_SERVE_WINDOW = 8191; private final long historySaveWindow; private final Address historyStorageAddress;