Skip to content

Commit

Permalink
[Consensus 2.0] enable the mysticeti digest inclusion in the committe…
Browse files Browse the repository at this point in the history
…d sub dag (#17903)

## Description 

Enable feature flag for all environments

## Test plan 

CI

---

## 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.

- [ ] Protocol: 
- [ ] Nodes (Validators and Full nodes): 
- [ ] Indexer: 
- [ ] JSON-RPC: 
- [ ] GraphQL: 
- [ ] CLI: 
- [ ] Rust SDK:
  • Loading branch information
akichidis authored May 23, 2024
1 parent 2a99159 commit 3fcaf04
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions crates/sui-protocol-config/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2238,6 +2238,9 @@ impl ProtocolConfig {
cfg.random_beacon_dkg_timeout_round = Some(3000);
cfg.random_beacon_min_round_interval_ms = Some(200);
}

// Enable the committed sub dag digest inclusion on the commit output
cfg.feature_flags.mysticeti_use_committed_subdag_digest = true;
}
// Use this template when making changes:
//
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ feature_flags:
zklogin_max_epoch_upper_bound_delta: 30
reshare_at_same_initial_version: true
resolve_abort_locations_to_package_id: true
mysticeti_use_committed_subdag_digest: true
max_tx_size_bytes: 131072
max_input_objects: 2048
max_size_written_objects: 5000000
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ feature_flags:
mysticeti_leader_scoring_and_schedule: true
reshare_at_same_initial_version: true
resolve_abort_locations_to_package_id: true
mysticeti_use_committed_subdag_digest: true
max_tx_size_bytes: 131072
max_input_objects: 2048
max_size_written_objects: 5000000
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ feature_flags:
mysticeti_leader_scoring_and_schedule: true
reshare_at_same_initial_version: true
resolve_abort_locations_to_package_id: true
mysticeti_use_committed_subdag_digest: true
max_tx_size_bytes: 131072
max_input_objects: 2048
max_size_written_objects: 5000000
Expand Down

0 comments on commit 3fcaf04

Please sign in to comment.