node: add monero.jameswillhoite.com

This commit is contained in:
hinto.janai 2023-03-17 12:45:32 -04:00
parent a07f18d2de
commit 6d8c2a76ff
No known key found for this signature in database
GPG key ID: D47CE05FA175A499
3 changed files with 35 additions and 28 deletions

4
.gitignore vendored
View file

@ -1,3 +1,3 @@
/target
.DS_Store
/feature
.DS_Store

View file

@ -1,9 +1,15 @@
# v1.2.0
## Updates
*
* [Remote Nodes](https://github.com/hinto-janai/gupax#remote-monero-nodes) changes:
```
+ ADD p2pool.uk (good uptime)
+ ADD xmr.aa78i2efsewr0neeknk.xyz (good uptime)
+ ADD monero.jameswillhoite.com (okay uptime)
- REMOVE fbx.tranbert.com (failing daily ping tests)
```
## Fixes
*
*
## Bundled Versions
* [`P2Pool v3.0`](https://github.com/SChernykh/p2pool/releases/tag/v3.0)

View file

@ -34,30 +34,31 @@ use hyper::{
// Remote Monero Nodes with ZMQ enabled, sourced from: [https://github.com/hinto-janai/monero-nodes]
// The format is an array of tuples consisting of: (IP, LOCATION, RPC_PORT, ZMQ_PORT)
pub const REMOTE_NODES: [(&str, &str, &str, &str); 23] = [
("monero.10z.com.ar", "AR - Buenos Aires F.D.", "18089", "18084"),
("escom.sadovo.com", "BG - Plovdiv", "18089", "18084"),
("monero2.10z.com.ar", "BR - São Paulo", "18089", "18083"),
("monero1.heitechsoft.com", "CA - Ontario", "18081", "18084"),
("node.monerodevs.org", "CA - Quebec", "18089", "18084"),
("xmr.aa78i2efsewr0neeknk.xyz" "DE - Bavaria", "18089", "18083"),
("de.poiuty.com", "DE - Berlin", "18081", "18084"),
("m1.poiuty.com", "DE - Berlin", "18081", "18084"),
("p2pmd.xmrvsbeast.com", "DE - Hesse", "18081", "18083"),
("reynald.ro", "FR - Île-de-France", "18089", "18084"),
("node2.monerodevs.org", "FR - Occitanie", "18089", "18084"),
("p2pool.uk", "GB - England", "18089", "18084"),
("monero.homeqloud.com", "GR - East Macedonia and Thrace", "18089", "18083"),
("home.allantaylor.kiwi", "NZ - Canterbury", "18089", "18083"),
("ru.poiuty.com", "RU - Kuzbass", "18081", "18084"),
("node-01-xmr.godevs.cloud", "SG - Singapore", "18089", "18083"),
("node-02-xmr.godevs.cloud", "SG - Singapore", "18089", "18083"),
("radishfields.hopto.org", "US - Colorado", "18081", "18084"),
("xmrbandwagon.hopto.org", "US - Colorado", "18081", "18084"),
("xmr.spotlightsound.com", "US - Kansas", "18081", "18084"),
("xmrnode.facspro.net", "US - Nebraska", "18089", "18084"),
("moneronode.ddns.net", "US - Pennsylvania", "18089", "18084"),
("node.richfowler.net", "US - Pennsylvania", "18089", "18084"),
pub const REMOTE_NODES: [(&str, &str, &str, &str); 24] = [
("monero.10z.com.ar", "AR - Buenos Aires F.D.", "18089", "18084"),
("escom.sadovo.com", "BG - Plovdiv", "18089", "18084"),
("monero2.10z.com.ar", "BR - São Paulo", "18089", "18083"),
("monero1.heitechsoft.com", "CA - Ontario", "18081", "18084"),
("node.monerodevs.org", "CA - Quebec", "18089", "18084"),
("xmr.aa78i2efsewr0neeknk.xyz", "DE - Bavaria", "18089", "18083"),
("de.poiuty.com", "DE - Berlin", "18081", "18084"),
("m1.poiuty.com", "DE - Berlin", "18081", "18084"),
("p2pmd.xmrvsbeast.com", "DE - Hesse", "18081", "18083"),
("reynald.ro", "FR - Île-de-France", "18089", "18084"),
("node2.monerodevs.org", "FR - Occitanie", "18089", "18084"),
("p2pool.uk", "GB - England", "18089", "18084"),
("monero.homeqloud.com", "GR - East Macedonia and Thrace", "18089", "18083"),
("home.allantaylor.kiwi", "NZ - Canterbury", "18089", "18083"),
("ru.poiuty.com", "RU - Kuzbass", "18081", "18084"),
("node-01-xmr.godevs.cloud", "SG - Singapore", "18089", "18083"),
("node-02-xmr.godevs.cloud", "SG - Singapore", "18089", "18083"),
("radishfields.hopto.org", "US - Colorado", "18081", "18084"),
("xmrbandwagon.hopto.org", "US - Colorado", "18081", "18084"),
("xmr.spotlightsound.com", "US - Kansas", "18081", "18084"),
("xmrnode.facspro.net", "US - Nebraska", "18089", "18084"),
("moneronode.ddns.net", "US - Pennsylvania", "18089", "18084"),
("node.richfowler.net", "US - Pennsylvania", "18089", "18084"),
("monero.jameswillhoite.com", "US - Ohio", "18089", "18084"),
];
pub const REMOTE_NODE_LENGTH: usize = REMOTE_NODES.len();