@@ -48,7 +48,7 @@ pub mod mainnet;
4848pub mod metrics;
4949
5050/// Newest network version for all networks
51- pub const NEWEST_NETWORK_VERSION : NetworkVersion = NetworkVersion :: V25 ;
51+ pub const NEWEST_NETWORK_VERSION : NetworkVersion = NetworkVersion :: V27 ;
5252
5353const ENV_FOREST_BLOCK_DELAY_SECS : & str = "FOREST_BLOCK_DELAY_SECS" ;
5454const ENV_FOREST_PROPAGATION_DELAY_SECS : & str = "FOREST_PROPAGATION_DELAY_SECS" ;
@@ -176,6 +176,7 @@ pub enum Height {
176176 Tock ,
177177 TockFix ,
178178 GoldenWeek ,
179+ Xxx ,
179180}
180181
181182impl From < Height > for NetworkVersion {
@@ -216,6 +217,7 @@ impl From<Height> for NetworkVersion {
216217 Height :: Tock => NetworkVersion :: V26 ,
217218 Height :: TockFix => NetworkVersion :: V26 ,
218219 Height :: GoldenWeek => NetworkVersion :: V27 ,
220+ Height :: Xxx => NetworkVersion :: V28 ,
219221 }
220222 }
221223}
@@ -639,7 +641,7 @@ mod tests {
639641 fn heights_are_present ( height_infos : & HashMap < Height , HeightInfo > ) {
640642 /// These are required heights that need to be defined for all networks, for, e.g., conformance
641643 /// with `Filecoin.StateGetNetworkParams` RPC method.
642- const REQUIRED_HEIGHTS : [ Height ; 30 ] = [
644+ const REQUIRED_HEIGHTS : [ Height ; 31 ] = [
643645 Height :: Breeze ,
644646 Height :: Smoke ,
645647 Height :: Ignition ,
@@ -670,6 +672,7 @@ mod tests {
670672 Height :: TukTuk ,
671673 Height :: Teep ,
672674 Height :: GoldenWeek ,
675+ Height :: Xxx ,
673676 ] ;
674677
675678 for height in & REQUIRED_HEIGHTS {
0 commit comments