mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-24 05:36:46 +00:00
fix(params): Fix EIP-2935 misleading constant
This commit is contained in:
parent
a9a19c4202
commit
ff24d6217f
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
)
|
||||
|
|
|
|||
Loading…
Reference in a new issue