From 5c23abfb29c49cb41f418905fd5af5fc5ce3e5cd Mon Sep 17 00:00:00 2001 From: leonardo Date: Tue, 8 Mar 2022 18:15:05 +0100 Subject: [PATCH] Change to rino nodes --- CHANGELOG.md | 3 ++- docs/asb/README.md | 2 +- monero-harness/src/image.rs | 4 ++-- swap/src/cli/command.rs | 4 ++-- 4 files changed, 7 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d6722ea7..fd52457b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed +- Change Monero nodes to [Rino tool nodes](https://community.rino.io/nodes.html) - Revert logs to use rfc3339 local time formatting. - Always write logs as JSON to files @@ -305,7 +306,7 @@ It is possible to migrate critical data from the old db to the sqlite but there - Fixed an issue where Alice would not verify if Bob's Bitcoin lock transaction is semantically correct, i.e. pays the agreed upon amount to an output owned by both of them. Fixing this required a **breaking change** on the network layer and hence old versions are not compatible with this version. -[Unreleased]: https://github.com/comit-network/xmr-btc-swap/compare/0.10.2...HEAD +[unreleased]: https://github.com/comit-network/xmr-btc-swap/compare/0.10.2...HEAD [0.10.2]: https://github.com/comit-network/xmr-btc-swap/compare/0.10.1...0.10.2 [0.10.1]: https://github.com/comit-network/xmr-btc-swap/compare/0.10.0...0.10.1 [0.10.0]: https://github.com/comit-network/xmr-btc-swap/compare/0.9.0...0.10.0 diff --git a/docs/asb/README.md b/docs/asb/README.md index 60fcdcf3..e39375a9 100644 --- a/docs/asb/README.md +++ b/docs/asb/README.md @@ -12,7 +12,7 @@ This quickstart guide assumes that you are running the software on testnet (i.e. 3. Run the ASB in terminal: `./asb --testnet start` 4. Follow the setup wizard in the terminal -Public Monero nodes for running the Monero Wallet RPC can be found [here](https://melo.tools/nodes.html). +Public Monero nodes for running the Monero Wallet RPC can be found [here](https://community.rino.io/nodes.html). Run `./asb --help` for more information. diff --git a/monero-harness/src/image.rs b/monero-harness/src/image.rs index 8422b16e..cf7efa47 100644 --- a/monero-harness/src/image.rs +++ b/monero-harness/src/image.rs @@ -25,7 +25,7 @@ impl Image for Monerod { type EntryPoint = str; fn descriptor(&self) -> String { - "melotools/monero:v0.17.2.0".to_owned() + "rinocommunity/monero:v0.17.2.0".to_owned() } fn wait_until_ready(&self, container: &Container<'_, D, Self>) { @@ -78,7 +78,7 @@ impl Image for MoneroWalletRpc { type EntryPoint = str; fn descriptor(&self) -> String { - "melotools/monero:v0.17.2.0".to_owned() + "rinocommunity/monero:v0.17.2.0".to_owned() } fn wait_until_ready(&self, container: &Container<'_, D, Self>) { diff --git a/swap/src/cli/command.rs b/swap/src/cli/command.rs index f2d57ceb..7899de18 100644 --- a/swap/src/cli/command.rs +++ b/swap/src/cli/command.rs @@ -15,8 +15,8 @@ use url::Url; use uuid::Uuid; // See: https://moneroworld.com/ -pub const DEFAULT_MONERO_DAEMON_ADDRESS: &str = "node.melo.tools:18081"; -pub const DEFAULT_MONERO_DAEMON_ADDRESS_STAGENET: &str = "stagenet.melo.tools:38081"; +pub const DEFAULT_MONERO_DAEMON_ADDRESS: &str = "node.community.rino.io:18081"; +pub const DEFAULT_MONERO_DAEMON_ADDRESS_STAGENET: &str = "stagenet.community.rino.io:38081"; // See: https://1209k.com/bitcoin-eye/ele.php?chain=btc const DEFAULT_ELECTRUM_RPC_URL: &str = "ssl://blockstream.info:700";