-
Notifications
You must be signed in to change notification settings - Fork 11.3k
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 GC and new linearizer logic for devnet #20258
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
The latest updates on your projects. Learn more about Vercel for Git ↗︎
3 Skipped Deployments
|
akichidis
temporarily deployed
to
sui-typescript-aws-kms-test-env
November 13, 2024 22:14 — with
GitHub Actions
Inactive
akichidis
temporarily deployed
to
sui-typescript-aws-kms-test-env
November 14, 2024 09:26 — with
GitHub Actions
Inactive
akichidis
temporarily deployed
to
sui-typescript-aws-kms-test-env
December 2, 2024 15:09 — with
GitHub Actions
Inactive
akichidis
force-pushed
the
akichidis/consensus-enable-gc-devnet
branch
from
January 14, 2025 11:15
939ae28
to
894594e
Compare
akichidis
temporarily deployed
to
sui-typescript-aws-kms-test-env
January 14, 2025 11:16 — with
GitHub Actions
Inactive
7 tasks
akichidis
force-pushed
the
akichidis/consensus-enable-gc-devnet
branch
from
January 23, 2025 12:44
894594e
to
2be101a
Compare
akichidis
temporarily deployed
to
sui-typescript-aws-kms-test-env
January 23, 2025 12:44 — with
GitHub Actions
Inactive
akichidis
changed the title
[Consensus] enable GC for devnet
[Consensus] enable GC and new linearizer logic for devnet
Jan 23, 2025
akichidis
temporarily deployed
to
sui-typescript-aws-kms-test-env
January 23, 2025 12:46 — with
GitHub Actions
Inactive
akichidis
temporarily deployed
to
sui-typescript-aws-kms-test-env
January 23, 2025 13:13 — with
GitHub Actions
Inactive
mwtian
approved these changes
Jan 24, 2025
arun-koshy
approved these changes
Jan 24, 2025
@@ -3150,6 +3156,12 @@ impl ProtocolConfig { | |||
|
|||
cfg.feature_flags.variant_nodes = true; | |||
} | |||
73 => { | |||
if chain != Chain::Mainnet && chain != Chain::Testnet { | |||
cfg.consensus_gc_depth = Some(60); |
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.
nit: might be useful for some quick comment about why "60" was chosen as the gc depth
akichidis
force-pushed
the
akichidis/consensus-enable-gc-devnet
branch
from
January 24, 2025 14:02
13030af
to
71d055e
Compare
akichidis
temporarily deployed
to
sui-typescript-aws-kms-test-env
January 24, 2025 14:02 — with
GitHub Actions
Inactive
akichidis
force-pushed
the
akichidis/consensus-enable-gc-devnet
branch
from
January 24, 2025 14:47
71d055e
to
9cc14d7
Compare
akichidis
temporarily deployed
to
sui-typescript-aws-kms-test-env
January 24, 2025 14:47 — with
GitHub Actions
Inactive
akichidis
temporarily deployed
to
sui-typescript-aws-kms-test-env
January 24, 2025 14:53 — with
GitHub Actions
Inactive
akichidis
temporarily deployed
to
sui-typescript-aws-kms-test-env
January 27, 2025 14:23 — with
GitHub Actions
Inactive
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
Enables consensus garbage collection and new linearization logic for devnet.
Test plan
CI/PT
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.