diff --git a/src/networks/butterflynet/mod.rs b/src/networks/butterflynet/mod.rs index ec26eb1fa4b..66d28954589 100644 --- a/src/networks/butterflynet/mod.rs +++ b/src/networks/butterflynet/mod.rs @@ -40,12 +40,12 @@ pub async fn fetch_genesis(db: &DB) -> anyhow::Result /// Genesis CID pub static GENESIS_CID: Lazy = Lazy::new(|| { - Cid::from_str("bafy2bzacecm7xklkq3hkc2kgm5wnb5shlxmffino6lzhh7lte5acytb7sssr4").unwrap() + Cid::from_str("bafy2bzacec4pxatmag56xwfpniagbeygezmz36basxkxiwc7cex7hg6lymr64").unwrap() }); /// Compressed genesis file. It is compressed with zstd and cuts the download size by 80% (from 10 MB to 2 MB). static GENESIS_URL: Lazy = Lazy::new(|| { - "https://forest-snapshots.fra1.cdn.digitaloceanspaces.com/genesis/butterflynet-bafy2bzacecm7xklkq3hkc2kgm5wnb5shlxmffino6lzhh7lte5acytb7sssr4.car.zst" + "https://forest-snapshots.fra1.cdn.digitaloceanspaces.com/genesis/butterflynet-bafy2bzacec4pxatmag56xwfpniagbeygezmz36basxkxiwc7cex7hg6lymr64.car.zst" .parse() .expect("hard-coded URL must parse") }); @@ -55,7 +55,7 @@ static GENESIS_URL: Lazy = Lazy::new(|| { /// The genesis file does not live on the `master` branch, currently on `butterfly/v24` branch. /// `` static GENESIS_URL_ALT: Lazy = Lazy::new(|| { - "https://github.com/filecoin-project/lotus/raw/b15b3c40b9649e3bc52aa15968d558aa4514ba6a/build/genesis/butterflynet.car.zst".parse().expect("hard-coded URL must parse") + "https://github.com/filecoin-project/lotus/raw/e2a790ef3ae8284a2ae52b0d7d18e4139ab909fc/build/genesis/butterflynet.car.zst".parse().expect("hard-coded URL must parse") }); pub(crate) const MINIMUM_CONSENSUS_POWER: i64 = 2 << 30;