fix(params): Fix EIP-2935 misleading constant

This commit is contained in:
Antoine James 2025-08-17 01:33:04 +03:00
parent a9a19c4202
commit ff24d6217f
No known key found for this signature in database
GPG key ID: B55D2737343AF067

View file

@ -180,7 +180,7 @@ const (
BlobTxMaxBlobs = 6 BlobTxMaxBlobs = 6
BlobBaseCost = 1 << 13 // Base execution gas cost for a blob. 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 MaxBlockSize = 8_388_608 // maximum size of an RLP-encoded block
) )