mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-26 14:46:42 +00:00
chore(catalyst): increase maxTrackedPayloads (#424)
This commit is contained in:
parent
f4cb12a203
commit
c091dd6c8f
1 changed files with 1 additions and 1 deletions
|
|
@ -28,7 +28,7 @@ import (
|
||||||
// maxTrackedPayloads is the maximum number of prepared payloads the execution
|
// maxTrackedPayloads is the maximum number of prepared payloads the execution
|
||||||
// engine tracks before evicting old ones. Ideally we should only ever track the
|
// engine tracks before evicting old ones. Ideally we should only ever track the
|
||||||
// latest one; but have a slight wiggle room for non-ideal conditions.
|
// latest one; but have a slight wiggle room for non-ideal conditions.
|
||||||
const maxTrackedPayloads = 768 // CHANGE(taiko): change to use `maxBlocksPerBatch`
|
const maxTrackedPayloads = 3 * 768 // CHANGE(taiko): change to use 3 * `maxBlocksPerBatch`
|
||||||
|
|
||||||
// maxTrackedHeaders is the maximum number of executed payloads the execution
|
// maxTrackedHeaders is the maximum number of executed payloads the execution
|
||||||
// engine tracks before evicting old ones. These are tracked outside the chain
|
// engine tracks before evicting old ones. These are tracked outside the chain
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue