From 01fa359ee58c96f20ae380d5d62fc2615eb87618 Mon Sep 17 00:00:00 2001 From: binarybaron <86064887+binarybaron@users.noreply.github.com> Date: Sat, 12 Nov 2022 14:35:49 +0100 Subject: [PATCH] Add monero-wallet-rpc `DOWNLOAD_URL` for M1, M2 Mac Add monero-wallet-rpc `DOWNLOAD_URL` for M1, M2 Mac --- swap/src/monero/wallet_rpc.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/swap/src/monero/wallet_rpc.rs b/swap/src/monero/wallet_rpc.rs index 326fe7cd..93a88493 100644 --- a/swap/src/monero/wallet_rpc.rs +++ b/swap/src/monero/wallet_rpc.rs @@ -20,7 +20,7 @@ compile_error!("unsupported operating system"); #[cfg(all(target_os = "macos", target_arch = "x86_64"))] const DOWNLOAD_URL: &str = "http://downloads.getmonero.org/cli/monero-mac-x64-v0.18.0.0.tar.bz2"; -#[cfg(all(target_os = "macos", target_arch = "arm"))] +#[cfg(all(target_os = "macos", target_arch = "aarch64"))] const DOWNLOAD_URL: &str = "https://downloads.getmonero.org/cli/monero-mac-armv8-v0.18.0.0.tar.bz2"; #[cfg(all(target_os = "linux", target_arch = "x86_64"))]