node: remove moneronode.ddns.net

This commit is contained in:
hinto.janai 2024-03-13 16:56:08 -04:00
parent 56cee0da0a
commit 7672901bbb
No known key found for this signature in database
GPG key ID: D47CE05FA175A499
3 changed files with 2 additions and 3 deletions

View file

@ -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

View file

@ -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

View file

@ -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"),
];