fix(download): use updated merkle base URL (#18236)

This commit is contained in:
Dan Cline
2025-09-02 18:20:24 -04:00
committed by GitHub
parent 60ce536550
commit d5a4898384

View File

@@ -17,7 +17,7 @@ use tokio::task;
use tracing::info;
const BYTE_UNITS: [&str; 4] = ["B", "KB", "MB", "GB"];
const MERKLE_BASE_URL: &str = "https://snapshots.merkle.io";
const MERKLE_BASE_URL: &str = "https://downloads.merkle.io";
const EXTENSION_TAR_FILE: &str = ".tar.lz4";
#[derive(Debug, Parser)]