From bcd2d95f03f45190c849c25efc38dbe8cca41fe7 Mon Sep 17 00:00:00 2001 From: binarybaron <86064887+binarybaron@users.noreply.github.com> Date: Thu, 29 Aug 2024 14:30:40 +0200 Subject: [PATCH] feat(cli): Change default testnet electrum server (#54) --- 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 9dda940e..42ff994e 100644 --- a/swap/src/cli/command.rs +++ b/swap/src/cli/command.rs @@ -27,7 +27,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://bitcoin-testnet.stackwallet.com:51002"; +pub const DEFAULT_ELECTRUM_RPC_URL_TESTNET: &str = "ssl://testnet.foundation.xyz:50002"; const DEFAULT_BITCOIN_CONFIRMATION_TARGET: usize = 1; pub const DEFAULT_BITCOIN_CONFIRMATION_TARGET_TESTNET: usize = 1;