From 465b2723f2d8a2ffa630b0f267816121b59a8470 Mon Sep 17 00:00:00 2001 From: "hinto.janai" Date: Thu, 11 May 2023 16:15:30 -0400 Subject: [PATCH] node: add `xmr.foxpro.su` --- src/node.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/node.rs b/src/node.rs index 2ce8a48..ef8adb1 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); 23] = [ +pub const REMOTE_NODES: [(&str, &str, &str, &str); 24] = [ ("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"), @@ -49,6 +49,7 @@ pub const REMOTE_NODES: [(&str, &str, &str, &str); 23] = [ ("node2.monerodevs.org", "FR - Occitanie", "18089", "18084"), ("p2pool.uk", "GB - England", "18089", "18084"), ("monero.homeqloud.com", "GR - East Macedonia and Thrace", "18089", "18083"), + ("xmr.foxpro.su", "NL - North Holland", "18081", "18084"), ("home.allantaylor.kiwi", "NZ - Canterbury", "18089", "18083"), ("ru.poiuty.com", "RU - Kuzbass", "18081", "18084"), ("radishfields.hopto.org", "US - Colorado", "18081", "18084"),