mirror of
https://github.com/comit-network/xmr-btc-swap.git
synced 2024-10-01 01:45:40 -04:00
Merge #975
975: change to rino docker containers r=lescuer97 a=lescuer97 this is for updating from the melo tools dockers to the rino ones Fixes #969 Co-authored-by: leonardo <leoescuer@protonmail.com>
This commit is contained in:
commit
f4d2e8fc8c
@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|
||||||
|
- Change Monero nodes to [Rino tool nodes](https://community.rino.io/nodes.html)
|
||||||
- Revert logs to use rfc3339 local time formatting.
|
- Revert logs to use rfc3339 local time formatting.
|
||||||
- Always write logs as JSON to files
|
- Always write logs as JSON to files
|
||||||
|
|
||||||
|
@ -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`
|
3. Run the ASB in terminal: `./asb --testnet start`
|
||||||
4. Follow the setup wizard in the terminal
|
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.
|
Run `./asb --help` for more information.
|
||||||
|
|
||||||
|
@ -25,7 +25,7 @@ impl Image for Monerod {
|
|||||||
type EntryPoint = str;
|
type EntryPoint = str;
|
||||||
|
|
||||||
fn descriptor(&self) -> String {
|
fn descriptor(&self) -> String {
|
||||||
"melotools/monero:v0.17.2.0".to_owned()
|
"rinocommunity/monero:v0.17.2.0".to_owned()
|
||||||
}
|
}
|
||||||
|
|
||||||
fn wait_until_ready<D: Docker>(&self, container: &Container<'_, D, Self>) {
|
fn wait_until_ready<D: Docker>(&self, container: &Container<'_, D, Self>) {
|
||||||
@ -70,7 +70,7 @@ impl Image for MoneroWalletRpc {
|
|||||||
type EntryPoint = str;
|
type EntryPoint = str;
|
||||||
|
|
||||||
fn descriptor(&self) -> String {
|
fn descriptor(&self) -> String {
|
||||||
"melotools/monero:v0.17.2.0".to_owned()
|
"rinocommunity/monero:v0.17.2.0".to_owned()
|
||||||
}
|
}
|
||||||
|
|
||||||
fn wait_until_ready<D: Docker>(&self, container: &Container<'_, D, Self>) {
|
fn wait_until_ready<D: Docker>(&self, container: &Container<'_, D, Self>) {
|
||||||
|
@ -15,8 +15,8 @@ use url::Url;
|
|||||||
use uuid::Uuid;
|
use uuid::Uuid;
|
||||||
|
|
||||||
// See: https://moneroworld.com/
|
// See: https://moneroworld.com/
|
||||||
pub const DEFAULT_MONERO_DAEMON_ADDRESS: &str = "node.melo.tools:18081";
|
pub const DEFAULT_MONERO_DAEMON_ADDRESS: &str = "node.community.rino.io:18081";
|
||||||
pub const DEFAULT_MONERO_DAEMON_ADDRESS_STAGENET: &str = "stagenet.melo.tools:38081";
|
pub const DEFAULT_MONERO_DAEMON_ADDRESS_STAGENET: &str = "stagenet.community.rino.io:38081";
|
||||||
|
|
||||||
// See: https://1209k.com/bitcoin-eye/ele.php?chain=btc
|
// See: https://1209k.com/bitcoin-eye/ele.php?chain=btc
|
||||||
const DEFAULT_ELECTRUM_RPC_URL: &str = "ssl://blockstream.info:700";
|
const DEFAULT_ELECTRUM_RPC_URL: &str = "ssl://blockstream.info:700";
|
||||||
|
Loading…
Reference in New Issue
Block a user