Skip to content

Commit

Permalink
Update EIP-7643: Fix MAX_HISTORICAL_EPOCHS for provided root
Browse files Browse the repository at this point in the history
Merged by EIP-Bot.
  • Loading branch information
kdeme committed Jun 7, 2024
1 parent 69efa08 commit 0e75ac9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions EIPS/eip-7643.md
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand All @@ -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
Expand Down

0 comments on commit 0e75ac9

Please sign in to comment.