From 4eb3c8e6ce3d763f3309b5f437b5d2f034bb7d45 Mon Sep 17 00:00:00 2001 From: "hinto.janai" Date: Thu, 1 Feb 2024 08:42:51 -0500 Subject: [PATCH] node: remove `node.richfowler.net` hyper::Error( Io, Os { code: 104, kind: ConnectionReset, message: "Connection reset by peer", }, ) --- src/node.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/node.rs b/src/node.rs index 6dca06d..c1cc5eb 100644 --- a/src/node.rs +++ b/src/node.rs @@ -34,7 +34,7 @@ use hyper::{ // Remote Monero Nodes with ZMQ enabled. // The format is an array of tuples consisting of: (IP, LOCATION, RPC_PORT, ZMQ_PORT) -pub const REMOTE_NODES: [(&str, &str, &str, &str); 18] = [ +pub const REMOTE_NODES: [(&str, &str, &str, &str); 17] = [ ("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); 18] = [ ("node2.monerodevs.org", "FR - Occitanie", "18089", "18084"), ("p2pool.uk", "GB - England", "18089", "18084"), ("home.allantaylor.kiwi", "NZ - Canterbury", "18089", "18083"), - ("ru.poiuty.com", "RU - Kuzbass", "18081", "18084"), ("xmr.support", "US - California", "18081", "18083"), ("sf.xmr.support", "US - California", "18081", "18083"), ("xmrbandwagon.hopto.org", "US - Colorado", "18081", "18084"),