File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -659,6 +659,8 @@ impl Config {
659
659
Ok ( StacksEpochId :: Epoch25 )
660
660
} else if epoch_name == EPOCH_CONFIG_3_0_0 {
661
661
Ok ( StacksEpochId :: Epoch30 )
662
+ } else if epoch_name == EPOCH_CONFIG_3_1_0 {
663
+ Ok ( StacksEpochId :: Epoch31 )
662
664
} else {
663
665
Err ( format ! ( "Unknown epoch name specified: {epoch_name}" ) )
664
666
} ?;
@@ -685,6 +687,7 @@ impl Config {
685
687
StacksEpochId :: Epoch24 ,
686
688
StacksEpochId :: Epoch25 ,
687
689
StacksEpochId :: Epoch30 ,
690
+ StacksEpochId :: Epoch31 ,
688
691
] ;
689
692
for ( expected_epoch, configured_epoch) in expected_list
690
693
. iter ( )
@@ -1291,6 +1294,7 @@ pub const EPOCH_CONFIG_2_3_0: &str = "2.3";
1291
1294
pub const EPOCH_CONFIG_2_4_0 : & str = "2.4" ;
1292
1295
pub const EPOCH_CONFIG_2_5_0 : & str = "2.5" ;
1293
1296
pub const EPOCH_CONFIG_3_0_0 : & str = "3.0" ;
1297
+ pub const EPOCH_CONFIG_3_1_0 : & str = "3.1" ;
1294
1298
1295
1299
#[ derive( Clone , Deserialize , Default , Debug ) ]
1296
1300
pub struct AffirmationOverride {
You can’t perform that action at this time.
0 commit comments