diff --git a/.gitignore b/.gitignore index 4b1d491..57bea2c 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,3 @@ /target - -.DS_Store \ No newline at end of file +/feature +.DS_Store diff --git a/CHANGELOG.md b/CHANGELOG.md index 71c8ccb..42a4fc9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/src/node.rs b/src/node.rs index 601a6bd..e37d18e 100644 --- a/src/node.rs +++ b/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();