Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(protocol): change blockMaxProposals from 432_000 to 324000 #17499

Merged
merged 3 commits into from
Jun 6, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/protocol/contracts/L1/TaikoL1.sol
Original file line number Diff line number Diff line change
Expand Up @@ -218,8 +218,8 @@ contract TaikoL1 is EssentialContract, ITaikoL1, TaikoEvents, TaikoErrors {
chainId: LibNetwork.TAIKO,
// Assume the block time is 3s, the protocol will allow ~90 days of
// new blocks without any verification.
blockMaxProposals: 432_000, // = 60*86400/12, 60 days, 12 seconds avg block time
blockRingBufferSize: 432_000 + 512,
blockMaxProposals: 324_000, // = 45*86400/12, 45 days, 12 seconds avg block time
blockRingBufferSize: 324_512,
// Can be overridden by the tier config.
maxBlocksToVerifyPerProposal: 10,
// This value is set based on `gasTargetPerL1Block = 15_000_000 * 4` in TaikoL2.
Expand Down