Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion scripts/tests/harness.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ function forest_download_and_import_snapshot {

function forest_download_and_import_snapshot_with_f3 {
echo "Downloading v1 snapshot"
aria2c -x5 https://forest-archive.chainsafe.dev/latest/calibnet/ -o v1.forest.car.zst
aria2c -x5 https://forest-archive.chainsafe.dev/latest-v1/calibnet -o v1.forest.car.zst
echo "Inspecting v1 snapshot"
$FOREST_TOOL_PATH archive info v1.forest.car.zst
echo "Downloading F3 snapshot"
Expand Down
2 changes: 1 addition & 1 deletion src/cli_shared/snapshot.rs
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ macro_rules! define_urls {
define_urls!(
const FOREST_MAINNET_COMPRESSED: &str = "https://forest-archive.chainsafe.dev/latest/mainnet/";
const FOREST_CALIBNET_COMPRESSED: &str =
"https://forest-archive.chainsafe.dev/latest/calibnet/";
"https://forest-archive.chainsafe.dev/latest-v1/calibnet";
);

pub fn stable_url(vendor: TrustedVendor, chain: &NetworkChain) -> anyhow::Result<Url> {
Expand Down
Loading