diff --git a/CHANGELOG.md b/CHANGELOG.md index 7261990..862be36 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,7 @@ * [Remote Node](https://github.com/hinto-janai/gupax#remote-monero-nodes) changes: - Removed `bunkernet.ddns.net` - Removed `ru.poiuty.com` + - Removed `moneronode.ddns.net` - Added `xmr{1,2,3}.rs.me` (thanks @SChernykh [#80](https://github.com/hinto-janai/gupax/pull/80)) ## Bundled Versions diff --git a/README.md b/README.md index a5affd0..436e43e 100644 --- a/README.md +++ b/README.md @@ -581,7 +581,6 @@ These are the remote nodes used by Gupax in the `[P2Pool Simple]` tab. | xmrbandwagon.hopto.org | 🇺🇸 United States | 18081 | 18084 | | xmr.spotlightsound.com | 🇺🇸 United States | 18081 | 18084 | | xmrnode.facspro.net | 🇺🇸 United States | 18089 | 18084 | -| moneronode.ddns.net | 🇺🇸 United States | 18089 | 18084 | | node.richfowler.net | 🇺🇸 United States | 18089 | 18084 | ## Build diff --git a/src/node.rs b/src/node.rs index c61efa4..9d6ad1d 100644 --- a/src/node.rs +++ b/src/node.rs @@ -34,7 +34,7 @@ use hyper::{ // Remote Monero Nodes with ZMQ enabled. // The format is an array of tuples consisting of: (IP, LOCATION, RPC_PORT, ZMQ_PORT) -pub const REMOTE_NODES: [(&str, &str, &str, &str); 19] = [ +pub const REMOTE_NODES: [(&str, &str, &str, &str); 18] = [ ("monero.10z.com.ar", "Argentina", "18089", "18084"), ("monero1.heitechsoft.com","Canada", "18081", "18084"), ("node.monerodevs.org", "Canada", "18089", "18084"), @@ -52,7 +52,6 @@ pub const REMOTE_NODES: [(&str, &str, &str, &str); 19] = [ ("xmrbandwagon.hopto.org", "United States", "18081", "18084"), ("xmr.spotlightsound.com", "United States", "18081", "18084"), ("xmrnode.facspro.net", "United States", "18089", "18084"), - ("moneronode.ddns.net", "United States", "18089", "18084"), ("node.richfowler.net", "United States", "18089", "18084"), ];