From f3fbf80e28a03d077f171eddef281d83ab1ef4e0 Mon Sep 17 00:00:00 2001 From: binarybaron <86064887+binarybaron@users.noreply.github.com> Date: Sat, 9 Nov 2024 16:04:28 +0100 Subject: [PATCH] fix(swap): Change default electrum testnet server (#144) --- swap/src/cli/command.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/swap/src/cli/command.rs b/swap/src/cli/command.rs index 32cabc66..15ce38bc 100644 --- a/swap/src/cli/command.rs +++ b/swap/src/cli/command.rs @@ -28,7 +28,7 @@ pub const DEFAULT_MONERO_DAEMON_ADDRESS_STAGENET: &str = "stagenet.community.rin // See: https://1209k.com/bitcoin-eye/ele.php?chain=btc const DEFAULT_ELECTRUM_RPC_URL: &str = "ssl://blockstream.info:700"; // See: https://1209k.com/bitcoin-eye/ele.php?chain=tbtc -pub const DEFAULT_ELECTRUM_RPC_URL_TESTNET: &str = "ssl://testnet.foundation.xyz:50002"; +pub const DEFAULT_ELECTRUM_RPC_URL_TESTNET: &str = "tcp://electrum.blockstream.info:60001"; const DEFAULT_BITCOIN_CONFIRMATION_TARGET: u16 = 1; pub const DEFAULT_BITCOIN_CONFIRMATION_TARGET_TESTNET: u16 = 1;