From 24903f049fe438bf429af9662b371947ee317d95 Mon Sep 17 00:00:00 2001 From: "hinto.janai" <hinto.janai@protonmail.com> Date: Thu, 13 Jul 2023 11:50:54 -0400 Subject: [PATCH] node: remove `node.moneroworld.com` Down. --- CHANGELOG.md | 6 +++++- README.md | 4 ---- src/node.rs | 3 +-- 3 files changed, 6 insertions(+), 7 deletions(-) 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"),