diff --git a/CHANGELOG.md b/CHANGELOG.md index ad3c03b..a577c7c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ # v1.2.4 ## 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 * diff --git a/README.md b/README.md index d843daf..1b486d6 100644 --- a/README.md +++ b/README.md @@ -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 | |----------------------------------|-----------------------------------|----------|-------------| | 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 | | 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 | | m1.poiuty.com | ๐Ÿ‡ฉ๐Ÿ‡ช DE - Berlin | 18081 | 18084 | | p2pmd.xmrvsbeast.com | ๐Ÿ‡ฉ๐Ÿ‡ช DE - Hesse | 18081 | 18083 | -| node.yeetin.me | ๐Ÿ‡ซ๐Ÿ‡ฎ FI - Uusimaa | 18081 | 18084 | | reynald.ro | ๐Ÿ‡ซ๐Ÿ‡ท FR - รŽle-de-France | 18089 | 18084 | | node2.monerodevs.org | ๐Ÿ‡ซ๐Ÿ‡ท FR - Occitanie | 18089 | 18084 | | p2pool.uk | ๐Ÿ‡ฌ๐Ÿ‡ง GB - England | 18089 | 18084 | diff --git a/src/node.rs b/src/node.rs index c51c8e2..4cdefff 100644 --- a/src/node.rs +++ b/src/node.rs @@ -34,11 +34,10 @@ 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] = [ +pub const REMOTE_NODES: [(&str, &str, &str, &str); 22] = [ ("monero.10z.com.ar", "AR - Buenos Aires F.D.", "18089", "18084"), ("monero1.heitechsoft.com", "CA - Ontario", "18081", "18084"), ("node.monerodevs.org", "CA - Quebec", "18089", "18084"), - ("node.moneroworld.com", "CA - Quebec", "18089", "18084"), ("de.poiuty.com", "DE - Berlin", "18081", "18084"), ("m1.poiuty.com", "DE - Berlin", "18081", "18084"), ("p2pmd.xmrvsbeast.com", "DE - Hesse", "18081", "18083"),