params: fix history serve window for verkle test (#32127)

Fixes the history serve window parameter for the
test function `getContractStoredBlockHash`.

Fixes #32458.
This commit is contained in:
Péter Garamvölgyi 2025-08-25 21:00:44 +02:00 committed by GitHub
parent 9b2e8e7ce3
commit 42467f1370
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -180,7 +180,7 @@ const (
BlobTxMaxBlobs = 6
BlobBaseCost = 1 << 13 // Base execution gas cost for a blob.
HistoryServeWindow = 8192 // Number of blocks to serve historical block hashes for, EIP-2935.
HistoryServeWindow = 8191 // Number of blocks to serve historical block hashes for, EIP-2935.
MaxBlockSize = 8_388_608 // maximum size of an RLP-encoded block
)