We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea5cd48 commit 21d7e16Copy full SHA for 21d7e16
crates/sui-protocol-config/src/lib.rs
@@ -4550,6 +4550,12 @@ impl ProtocolConfig {
4550
// in the quarantine output.
4551
}
4552
4553
+ // Antithesis specific overrides.
4554
+ #[cfg(not(msim))]
4555
+ if mysten_common::in_antithesis() {
4556
+ cfg.max_transactions_per_checkpoint = Some(100);
4557
+ }
4558
+
4559
cfg
4560
4561
@@ -4864,6 +4870,7 @@ impl ProtocolConfig {
4864
4870
self.feature_flags.enable_authenticated_event_streams = true;
4865
4871
self.feature_flags
4866
4872
.include_checkpoint_artifacts_digest_in_summary = true;
4873
+ self.feature_flags.split_checkpoints_in_consensus_handler = true;
4867
4874
4868
4875
4869
4876
pub fn disable_authenticated_event_streams_for_testing(&mut self) {
0 commit comments