mirror of
https://github.com/Cyrix126/gupaxx.git
synced 2024-11-16 15:27:46 +00:00
node: add monero.jameswillhoite.com
This commit is contained in:
parent
a07f18d2de
commit
6d8c2a76ff
3 changed files with 35 additions and 28 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -1,3 +1,3 @@
|
|||
/target
|
||||
|
||||
/feature
|
||||
.DS_Store
|
|
@ -1,6 +1,12 @@
|
|||
# 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
|
||||
*
|
||||
|
|
49
src/node.rs
49
src/node.rs
|
@ -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();
|
||||
|
|
Loading…
Reference in a new issue