mirror of
https://github.com/Cyrix126/gupaxx.git
synced 2024-12-22 22:59:27 +00:00
node: remove node.moneroworld.com
Down.
This commit is contained in:
parent
ad58058b5b
commit
24903f049f
3 changed files with 6 additions and 7 deletions
|
@ -1,6 +1,10 @@
|
||||||
# v1.2.4
|
# v1.2.4
|
||||||
## Updates
|
## Updates
|
||||||
*
|
* [Remote Node](https://github.com/hinto-janai/gupax#remote-monero-nodes) changes:
|
||||||
|
- Removed `xmr.aa78i2efsewr0neeknk.xyz`
|
||||||
|
- Removed `node.yeetin.me`
|
||||||
|
- Removed `monero2.10z.com.ar`
|
||||||
|
- Removed `node.moneroworld.com`
|
||||||
|
|
||||||
## Fixes
|
## Fixes
|
||||||
*
|
*
|
||||||
|
|
|
@ -565,15 +565,11 @@ These are the remote nodes used by Gupax in the `[P2Pool Simple]` tab. They are
|
||||||
| IP/Domain | Location | RPC Port | ZMQ Port |
|
| IP/Domain | Location | RPC Port | ZMQ Port |
|
||||||
|----------------------------------|-----------------------------------|----------|-------------|
|
|----------------------------------|-----------------------------------|----------|-------------|
|
||||||
| monero.10z.com.ar | 🇦🇷 AR - Buenos Aires F.D. | 18089 | 18084 |
|
| monero.10z.com.ar | 🇦🇷 AR - Buenos Aires F.D. | 18089 | 18084 |
|
||||||
| 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 |
|
||||||
| node.moneroworld.com | 🇨🇦 CA - Quebec | 18089 | 18084 |
|
|
||||||
| 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 |
|
||||||
| node.yeetin.me | 🇫🇮 FI - Uusimaa | 18081 | 18084 |
|
|
||||||
| reynald.ro | 🇫🇷 FR - Île-de-France | 18089 | 18084 |
|
| reynald.ro | 🇫🇷 FR - Île-de-France | 18089 | 18084 |
|
||||||
| node2.monerodevs.org | 🇫🇷 FR - Occitanie | 18089 | 18084 |
|
| node2.monerodevs.org | 🇫🇷 FR - Occitanie | 18089 | 18084 |
|
||||||
| p2pool.uk | 🇬🇧 GB - England | 18089 | 18084 |
|
| p2pool.uk | 🇬🇧 GB - England | 18089 | 18084 |
|
||||||
|
|
|
@ -34,11 +34,10 @@ 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); 22] = [
|
||||||
("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"),
|
||||||
("node.moneroworld.com", "CA - Quebec", "18089", "18084"),
|
|
||||||
("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"),
|
||||||
|
|
Loading…
Reference in a new issue