From 0e22aedc6f26952e10b4c02dc4ec643018013877 Mon Sep 17 00:00:00 2001 From: Mark Logan <103447440+mystenmark@users.noreply.github.com> Date: Mon, 15 Jul 2024 17:58:07 -0700 Subject: [PATCH] [Cherry Pick] Re-order flags to match order in v1.28 (#18682) (#18684) Cherry pick of #18682 --- crates/sui-core/src/authority/epoch_start_configuration.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/sui-core/src/authority/epoch_start_configuration.rs b/crates/sui-core/src/authority/epoch_start_configuration.rs index 2280d166dcf91..e96a10ebb1b0c 100644 --- a/crates/sui-core/src/authority/epoch_start_configuration.rs +++ b/crates/sui-core/src/authority/epoch_start_configuration.rs @@ -55,10 +55,10 @@ pub enum EpochFlag { // This flag was "burned" because it was deployed with a broken version of the code. The // new flags below are required to enable state accumulator v2 _StateAccumulatorV2EnabledDeprecated, - - ExecutedInEpochTable, StateAccumulatorV2EnabledTestnet, StateAccumulatorV2EnabledMainnet, + + ExecutedInEpochTable, } impl EpochFlag {