File tree Expand file tree Collapse file tree 1 file changed +10
-3
lines changed Expand file tree Collapse file tree 1 file changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -478,10 +478,17 @@ lazy_static! {
478
478
StacksEpoch {
479
479
epoch_id: StacksEpochId :: Epoch31 ,
480
480
start_height: 8001 ,
481
- end_height: STACKS_EPOCH_MAX ,
481
+ end_height: 9001 ,
482
482
block_limit: BLOCK_LIMIT_MAINNET_21 . clone( ) ,
483
483
network_epoch: PEER_VERSION_EPOCH_3_1
484
484
} ,
485
+ StacksEpoch {
486
+ epoch_id: StacksEpochId :: Epoch32 ,
487
+ start_height: 9001 ,
488
+ end_height: STACKS_EPOCH_MAX ,
489
+ block_limit: BLOCK_LIMIT_MAINNET_21 . clone( ) ,
490
+ network_epoch: PEER_VERSION_EPOCH_3_2
491
+ } ,
485
492
] ) ;
486
493
}
487
494
@@ -1910,8 +1917,8 @@ impl StacksEpochExtension for StacksEpoch {
1910
1917
. iter ( )
1911
1918
. max ( )
1912
1919
. expect ( "FATAL: expect at least one epoch" ) ;
1913
- if max_epoch. epoch_id == StacksEpochId :: Epoch31 {
1914
- assert ! ( PEER_NETWORK_EPOCH >= u32 :: from( PEER_VERSION_EPOCH_3_0 ) ) ;
1920
+ if max_epoch. epoch_id == StacksEpochId :: Epoch32 {
1921
+ assert ! ( PEER_NETWORK_EPOCH >= u32 :: from( PEER_VERSION_EPOCH_3_1 ) ) ;
1915
1922
} else {
1916
1923
assert ! (
1917
1924
max_epoch. network_epoch as u32 <= PEER_NETWORK_EPOCH ,
You can’t perform that action at this time.
0 commit comments