From 0e75ac998e6ebcd63e962f1ccb8d2e7d571734cf Mon Sep 17 00:00:00 2001 From: Kim De Mey Date: Fri, 7 Jun 2024 11:30:12 +0200 Subject: [PATCH] Update EIP-7643: Fix MAX_HISTORICAL_EPOCHS for provided root Merged by EIP-Bot. --- EIPS/eip-7643.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/EIPS/eip-7643.md b/EIPS/eip-7643.md index de1233c82ee6eb..8d7235c86573ba 100644 --- a/EIPS/eip-7643.md +++ b/EIPS/eip-7643.md @@ -37,7 +37,7 @@ associated total difficulty. The format for this data is defined as: ```python EPOCH_SIZE = 8192 # blocks -MAX_HISTORICAL_EPOCHS = 131072 # 2**17 +MAX_HISTORICAL_EPOCHS = 2048 # An individual record for a historical header. HeaderRecord = Container[block_hash: bytes32, total_difficulty: uint256] @@ -53,7 +53,7 @@ HistoricalHashesAccumulator = Container[ ### Pre-PoS Root -The hash tree root of `HistoricalHashesAccumulator` for data before block 15537393 is +The hash tree root of `HistoricalHashesAccumulator` for data before block 15537394 is `0xec8e040fd6c557b41ca8ddd38f7e9d58a9281918dc92bdb72342a38fb085e701`. ## Rationale