Skip to content

Commit

Permalink
Update electrum URLs (#497)
Browse files Browse the repository at this point in the history
  • Loading branch information
dangeross authored Sep 24, 2024
1 parent e1edf85 commit 91d8017
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/core/src/model.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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,
Expand Down

0 comments on commit 91d8017

Please sign in to comment.