Skip to content

Commit

Permalink
[StateAccumulatorV2] Ignore epoch flag CP
Browse files Browse the repository at this point in the history
  • Loading branch information
williampsmith committed Jun 16, 2024
1 parent 8ee5963 commit de49296
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
2 changes: 1 addition & 1 deletion crates/sui-core/src/authority/epoch_start_configuration.rs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ impl EpochFlag {

/// For situations in which there is no config available (e.g. setting up a downloaded snapshot).
pub fn default_for_no_config() -> Vec<Self> {
Self::default_flags_impl(&Default::default(), true)
Self::default_flags_impl(&Default::default(), false)
}

fn default_flags_impl(
Expand Down
13 changes: 8 additions & 5 deletions crates/sui-core/src/state_accumulator.rs
Original file line number Diff line number Diff line change
Expand Up @@ -367,12 +367,15 @@ impl StateAccumulator {
store: Arc<dyn AccumulatorStore>,
epoch_store: &Arc<AuthorityPerEpochStore>,
) -> Self {
let chain = epoch_store.get_chain_identifier().chain();
if epoch_store.state_accumulator_v2_enabled() && chain != Chain::Mainnet {
StateAccumulator::V2(StateAccumulatorV2::new(store))
} else {
StateAccumulator::V1(StateAccumulatorV1::new(store))
if cfg!(msim) {
if epoch_store.state_accumulator_v2_enabled() {
return StateAccumulator::V2(StateAccumulatorV2::new(store));
} else {
return StateAccumulator::V1(StateAccumulatorV1::new(store));
}
}

StateAccumulator::V1(StateAccumulatorV1::new(store))
}

/// Accumulates the effects of a single checkpoint and persists the accumulator.
Expand Down

0 comments on commit de49296

Please sign in to comment.