Skip to content

Commit af9d474

Browse files
committed
enable by default
1 parent 26aa574 commit af9d474

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

crates/sui-protocol-config/src/lib.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4287,9 +4287,7 @@ impl ProtocolConfig {
42874287

42884288
cfg.poseidon_bn254_cost_base = Some(260);
42894289

4290-
if chain != Chain::Mainnet && chain != Chain::Testnet {
4291-
cfg.feature_flags.consensus_skip_gced_accept_votes = true;
4292-
}
4290+
cfg.feature_flags.consensus_skip_gced_accept_votes = true;
42934291

42944292
if chain != Chain::Mainnet {
42954293
cfg.feature_flags

crates/sui-protocol-config/src/snapshots/sui_protocol_config__test__Mainnet_version_104.snap

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,7 @@ feature_flags:
126126
generate_df_type_layouts: true
127127
private_generics_verifier_v2: true
128128
deprecate_global_storage_ops: true
129+
consensus_skip_gced_accept_votes: true
129130
max_tx_size_bytes: 131072
130131
max_input_objects: 2048
131132
max_size_written_objects: 5000000

crates/sui-protocol-config/src/snapshots/sui_protocol_config__test__Testnet_version_104.snap

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,7 @@ feature_flags:
128128
generate_df_type_layouts: true
129129
private_generics_verifier_v2: true
130130
deprecate_global_storage_ops: true
131+
consensus_skip_gced_accept_votes: true
131132
max_tx_size_bytes: 131072
132133
max_input_objects: 2048
133134
max_size_written_objects: 5000000

0 commit comments

Comments
 (0)