Skip to content

Commit

Permalink
feat: add calibnet tuk tuk epoch (#4888)
Browse files Browse the repository at this point in the history
  • Loading branch information
LesnyRumcajs authored Oct 14, 2024
1 parent 4eefcc2 commit dcab65c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/networks/calibnet/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ pub static HEIGHT_INFOS: Lazy<HashMap<Height, HeightInfo>> = Lazy::new(|| {
make_height!(Phoenix, 1_428_094),
// 2024-07-11 12:00:00Z
make_height!(Waffle, 1_779_094, get_bundle_cid("v14.0.0-rc.1")),
// TODO(forest): https://github.com/ChainSafe/forest/issues/4800
make_height!(TukTuk, i64::MAX),
// 2024-10-23T13:30:00Z
make_height!(TukTuk, 2_078_794, get_bundle_cid("v15.0.0-rc1")),
])
});

Expand Down
3 changes: 2 additions & 1 deletion src/networks/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,8 @@ impl ChainConfig {
breeze_gas_tamping_duration: BREEZE_GAS_TAMPING_DURATION,
// 3 days on calibnet
fip0081_ramp_duration_epochs: 3 * EPOCHS_IN_DAY as u64,
f3_bootstrap_epoch: -1,
// 2024-10-24T13:30:00Z
f3_bootstrap_epoch: 2_081_674,
f3_initial_power_table: Default::default(),
f3_manifest_server: Some(
"12D3KooWS9vD9uwm8u2uPyJV32QBAhKAmPYwmziAgr3Xzk2FU1Mr"
Expand Down
3 changes: 1 addition & 2 deletions src/state_migration/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,7 @@ where
(Height::Dragon, nv22::run_migration::<DB>),
(Height::DragonFix, nv22fix::run_migration::<DB>),
(Height::Waffle, nv23::run_migration::<DB>),
// TODO(forest): https://github.com/ChainSafe/forest/issues/4800
// (Height::TukTuk, nv24::run_migration::<DB>),
(Height::TukTuk, nv24::run_migration::<DB>),
]
}
NetworkChain::Butterflynet => {
Expand Down

0 comments on commit dcab65c

Please sign in to comment.