From 4517e2935c3c1e2f026e020bfe27403fcac2fc70 Mon Sep 17 00:00:00 2001 From: Dan Cline <6798349+Rjected@users.noreply.github.com> Date: Tue, 2 Sep 2025 16:00:06 -0400 Subject: [PATCH] fix(download): use updated merkle base URL --- crates/cli/commands/src/download.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/cli/commands/src/download.rs b/crates/cli/commands/src/download.rs index 2e33729e395..271e5b90ace 100644 --- a/crates/cli/commands/src/download.rs +++ b/crates/cli/commands/src/download.rs @@ -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)]