From ca14ccef184bc105d2ef98fbafabd67625b8579a Mon Sep 17 00:00:00 2001 From: "hinto.janai" Date: Thu, 13 Jul 2023 11:53:52 -0400 Subject: [PATCH] node: remove `radishfields.hopto.org` Down. --- CHANGELOG.md | 1 + README.md | 1 - src/node.rs | 3 +-- 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2f1c4db..a814fc7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,7 @@ - Removed `reynald.ro` - Removed `monero.homeqloud.com` - Removed `xmr.foxpro.su` + - Removed `radishfields.hopto.org` ## Fixes * diff --git a/README.md b/README.md index 5d4d75f..1082521 100644 --- a/README.md +++ b/README.md @@ -573,7 +573,6 @@ These are the remote nodes used by Gupax in the `[P2Pool Simple]` tab. They are | home.allantaylor.kiwi | πŸ‡³πŸ‡Ώ NZ - Canterbury | 18089 | 18083 | | ru.poiuty.com | πŸ‡·πŸ‡Ί RU - Kuzbass | 18081 | 18084 | | xmr.support | πŸ‡ΊπŸ‡Έ US - California | 18081 | 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 | diff --git a/src/node.rs b/src/node.rs index 75f80f4..ca19f0e 100644 --- a/src/node.rs +++ b/src/node.rs @@ -34,7 +34,7 @@ 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); 17] = [ +pub const REMOTE_NODES: [(&str, &str, &str, &str); 16] = [ ("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"), @@ -44,7 +44,6 @@ pub const REMOTE_NODES: [(&str, &str, &str, &str); 17] = [ ("home.allantaylor.kiwi", "NZ - Canterbury", "18089", "18083"), ("ru.poiuty.com", "RU - Kuzbass", "18081", "18084"), ("xmr.support", "US - California", "18081", "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"),