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
|
/target
|
||||||
|
/feature
|
||||||
.DS_Store
|
.DS_Store
|
|
@ -1,6 +1,12 @@
|
||||||
# v1.2.0
|
# v1.2.0
|
||||||
## Updates
|
## 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
|
## Fixes
|
||||||
*
|
*
|
||||||
|
|
|
@ -34,13 +34,13 @@ use hyper::{
|
||||||
// Remote Monero Nodes with ZMQ enabled, sourced from: [https://github.com/hinto-janai/monero-nodes]
|
// 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)
|
// The format is an array of tuples consisting of: (IP, LOCATION, RPC_PORT, ZMQ_PORT)
|
||||||
|
|
||||||
pub const REMOTE_NODES: [(&str, &str, &str, &str); 23] = [
|
pub const REMOTE_NODES: [(&str, &str, &str, &str); 24] = [
|
||||||
("monero.10z.com.ar", "AR - Buenos Aires F.D.", "18089", "18084"),
|
("monero.10z.com.ar", "AR - Buenos Aires F.D.", "18089", "18084"),
|
||||||
("escom.sadovo.com", "BG - Plovdiv", "18089", "18084"),
|
("escom.sadovo.com", "BG - Plovdiv", "18089", "18084"),
|
||||||
("monero2.10z.com.ar", "BR - São Paulo", "18089", "18083"),
|
("monero2.10z.com.ar", "BR - São Paulo", "18089", "18083"),
|
||||||
("monero1.heitechsoft.com", "CA - Ontario", "18081", "18084"),
|
("monero1.heitechsoft.com", "CA - Ontario", "18081", "18084"),
|
||||||
("node.monerodevs.org", "CA - Quebec", "18089", "18084"),
|
("node.monerodevs.org", "CA - Quebec", "18089", "18084"),
|
||||||
("xmr.aa78i2efsewr0neeknk.xyz" "DE - Bavaria", "18089", "18083"),
|
("xmr.aa78i2efsewr0neeknk.xyz", "DE - Bavaria", "18089", "18083"),
|
||||||
("de.poiuty.com", "DE - Berlin", "18081", "18084"),
|
("de.poiuty.com", "DE - Berlin", "18081", "18084"),
|
||||||
("m1.poiuty.com", "DE - Berlin", "18081", "18084"),
|
("m1.poiuty.com", "DE - Berlin", "18081", "18084"),
|
||||||
("p2pmd.xmrvsbeast.com", "DE - Hesse", "18081", "18083"),
|
("p2pmd.xmrvsbeast.com", "DE - Hesse", "18081", "18083"),
|
||||||
|
@ -58,6 +58,7 @@ pub const REMOTE_NODES: [(&str, &str, &str, &str); 23] = [
|
||||||
("xmrnode.facspro.net", "US - Nebraska", "18089", "18084"),
|
("xmrnode.facspro.net", "US - Nebraska", "18089", "18084"),
|
||||||
("moneronode.ddns.net", "US - Pennsylvania", "18089", "18084"),
|
("moneronode.ddns.net", "US - Pennsylvania", "18089", "18084"),
|
||||||
("node.richfowler.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();
|
pub const REMOTE_NODE_LENGTH: usize = REMOTE_NODES.len();
|
||||||
|
|
Loading…
Reference in a new issue