-
Notifications
You must be signed in to change notification settings - Fork 11.4k
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
[consensus] Enable checkpoint batching and leader schedule change for mysticeti mainnet #18564
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
3 Skipped Deployments
|
4afe8d6
to
64908fa
Compare
|
||
// Enable checkpoint batching on mainnet. | ||
cfg.checkpoint_summary_version_specific_data = Some(1); | ||
cfg.min_checkpoint_interval_ms = Some(200); | ||
} | ||
53 => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
since 52 was reverted from testnet branch, do we need to introduce 53 right now? Or should we collapse them?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah good point, 52 & 53 would get released together anyways so I guess there is no harm in collapsing them into 52.
a9532d3
to
ba4911f
Compare
… mysticeti mainnet (MystenLabs#18564) ## Description Enable features in protocol config (v52) for Mysticeti mainnet launch - Checkpoint batching - Leader Scoring & Schedule Change --- ## Release notes Check each box that your changes affect. If none of the boxes relate to your changes, release notes aren't required. For each box you select, include information after the relevant heading that describes the impact of your changes that a user might notice and any actions they must take to implement updates. - [ X ] Protocol: v52 -- Enable checkpoint batching in mainnet. -- Enable Leader Scoring & Schedule Change for Mysticeti consensus on mainnet.
Description
Enable features in protocol config (v52) for Mysticeti mainnet launch
Removed v53 and moved feature changes to v52
Release notes
Check each box that your changes affect. If none of the boxes relate to your changes, release notes aren't required.
For each box you select, include information after the relevant heading that describes the impact of your changes that a user might notice and any actions they must take to implement updates.
-- Enable checkpoint batching in mainnet.
-- Enable Leader Scoring & Schedule Change for Mysticeti consensus on mainnet.