mirror of
https://github.com/Cyrix126/gupaxx.git
synced 2025-01-03 12:39:35 +00:00
node: add oracle.netrix.cc
This commit is contained in:
parent
b8d02617e7
commit
27369c26af
3 changed files with 4 additions and 1 deletions
|
@ -4,6 +4,7 @@
|
||||||
- Added `sf.xmr.support`
|
- Added `sf.xmr.support`
|
||||||
- Added `node.cryptocano.de`
|
- Added `node.cryptocano.de`
|
||||||
- Added `bunkernet.ddns.net`
|
- Added `bunkernet.ddns.net`
|
||||||
|
- Added `oracle.netrix.cc`
|
||||||
- Removed `xmr.aa78i2efsewr0neeknk.xyz`
|
- Removed `xmr.aa78i2efsewr0neeknk.xyz`
|
||||||
- Removed `node.yeetin.me`
|
- Removed `node.yeetin.me`
|
||||||
- Removed `monero2.10z.com.ar`
|
- Removed `monero2.10z.com.ar`
|
||||||
|
|
|
@ -567,6 +567,7 @@ These are the remote nodes used by Gupax in the `[P2Pool Simple]` tab. They are
|
||||||
| monero.10z.com.ar | 🇦🇷 AR - Buenos Aires F.D. | 18089 | 18084 |
|
| monero.10z.com.ar | 🇦🇷 AR - Buenos Aires F.D. | 18089 | 18084 |
|
||||||
| 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 |
|
||||||
|
| oracle.netrix.cc | 🇨🇭 CH - Zurich | 18089 | 18083 |
|
||||||
| p2pmd.xmrvsbeast.com | 🇩🇪 DE - Hesse | 18081 | 18083 |
|
| p2pmd.xmrvsbeast.com | 🇩🇪 DE - Hesse | 18081 | 18083 |
|
||||||
| node.cryptocano.de | 🇩🇪 DE - Lower Saxony | 18089 | 18083 |
|
| node.cryptocano.de | 🇩🇪 DE - Lower Saxony | 18089 | 18083 |
|
||||||
| node2.monerodevs.org | 🇫🇷 FR - Occitanie | 18089 | 18084 |
|
| node2.monerodevs.org | 🇫🇷 FR - Occitanie | 18089 | 18084 |
|
||||||
|
|
|
@ -34,10 +34,11 @@ 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); 16] = [
|
pub const REMOTE_NODES: [(&str, &str, &str, &str); 19] = [
|
||||||
("monero.10z.com.ar", "AR - Buenos Aires F.D.", "18089", "18084"),
|
("monero.10z.com.ar", "AR - Buenos Aires F.D.", "18089", "18084"),
|
||||||
("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"),
|
||||||
|
("oracle.netrix.cc", "CH - Zurich", "18089", "18083"),
|
||||||
("node.cryptocano.de", "DE - Lower Saxony", "18089", "18083"),
|
("node.cryptocano.de", "DE - Lower Saxony", "18089", "18083"),
|
||||||
("p2pmd.xmrvsbeast.com", "DE - Hesse", "18081", "18083"),
|
("p2pmd.xmrvsbeast.com", "DE - Hesse", "18081", "18083"),
|
||||||
("node2.monerodevs.org", "FR - Occitanie", "18089", "18084"),
|
("node2.monerodevs.org", "FR - Occitanie", "18089", "18084"),
|
||||||
|
|
Loading…
Reference in a new issue