From 754159c9f867b9598aa306b68476b0c21f716c4b Mon Sep 17 00:00:00 2001 From: rishflab Date: Fri, 5 Mar 2021 15:11:32 +1100 Subject: [PATCH] Switch to public stagenet node that works The xmr.to node has been unreliable lately. The exan.tech node seems to working. --- swap/src/bin/swap_cli.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/swap/src/bin/swap_cli.rs b/swap/src/bin/swap_cli.rs index 96fb9e6f..02275a54 100644 --- a/swap/src/bin/swap_cli.rs +++ b/swap/src/bin/swap_cli.rs @@ -96,7 +96,7 @@ async fn main() -> Result<()> { let monero_wallet_rpc = monero::WalletRpc::new(config.data.dir.join("monero")).await?; let monero_wallet_rpc_process = monero_wallet_rpc - .run(monero_network, "stagenet.community.xmr.to") + .run(monero_network, "monero-stagenet.exan.tech") .await?; match args.cmd {