From 91d80179fc16f139dfd916b46be9b9fde1196848 Mon Sep 17 00:00:00 2001 From: Ross Savage <551697+dangeross@users.noreply.github.com> Date: Tue, 24 Sep 2024 09:50:31 +0200 Subject: [PATCH] Update electrum URLs (#497) --- lib/core/src/model.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/core/src/model.rs b/lib/core/src/model.rs index bb62f0545..5cde78cba 100644 --- a/lib/core/src/model.rs +++ b/lib/core/src/model.rs @@ -55,8 +55,8 @@ pub struct Config { impl Config { pub fn mainnet() -> Self { Config { - liquid_electrum_url: "blockstream.info:995".to_string(), - bitcoin_electrum_url: "blockstream.info:700".to_string(), + liquid_electrum_url: "elements-mainnet.blockstream.info:50002".to_string(), + bitcoin_electrum_url: "bitcoin-mainnet.blockstream.info:50002".to_string(), mempoolspace_url: "https://mempool.space/api".to_string(), working_dir: ".".to_string(), network: LiquidNetwork::Mainnet, @@ -69,8 +69,8 @@ impl Config { pub fn testnet() -> Self { Config { - liquid_electrum_url: "blockstream.info:465".to_string(), - bitcoin_electrum_url: "blockstream.info:993".to_string(), + liquid_electrum_url: "elements-testnet.blockstream.info:50002".to_string(), + bitcoin_electrum_url: "bitcoin-testnet.blockstream.info:50002".to_string(), mempoolspace_url: "https://mempool.space/testnet/api".to_string(), working_dir: ".".to_string(), network: LiquidNetwork::Testnet,