From 7345f9b1249c7ef7fbb4842af7684b1862934e0c Mon Sep 17 00:00:00 2001 From: "hinto.janai" Date: Thu, 1 Feb 2024 09:01:13 -0500 Subject: [PATCH] node: use full country name --- src/node.rs | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/src/node.rs b/src/node.rs index 836f05b..0fbab20 100644 --- a/src/node.rs +++ b/src/node.rs @@ -35,25 +35,25 @@ use hyper::{ // The format is an array of tuples consisting of: (IP, LOCATION, RPC_PORT, ZMQ_PORT) pub const REMOTE_NODES: [(&str, &str, &str, &str); 19] = [ - ("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"), - ("xmr3.rs.me", "DE - Frankfurt", "18089", "18084"), - ("node.cryptocano.de", "DE - Lower Saxony", "18089", "18083"), - ("p2pmd.xmrvsbeast.com", "DE - Hesse", "18081", "18083"), - ("fbx.tranbert.com", "FR - Île-de-France", "18089", "18084"), - ("node2.monerodevs.org", "FR - Occitanie", "18089", "18084"), - ("p2pool.uk", "GB - England", "18089", "18084"), - ("home.allantaylor.kiwi", "NZ - Canterbury", "18089", "18083"), - ("xmr1.rs.me", "SG - Singapore", "18089", "18084"), - ("xmr2.rs.me", "US - New York", "18089", "18084"), - ("xmr.support", "US - California", "18081", "18083"), - ("sf.xmr.support", "US - California", "18081", "18083"), - ("xmrbandwagon.hopto.org", "US - Colorado", "18081", "18084"), - ("xmr.spotlightsound.com", "US - Kansas", "18081", "18084"), - ("xmrnode.facspro.net", "US - Nebraska", "18089", "18084"), - ("moneronode.ddns.net", "US - Pennsylvania", "18089", "18084"), - ("node.richfowler.net", "US - Pennsylvania", "18089", "18084"), + ("monero.10z.com.ar", "Argentina", "18089", "18084"), + ("monero1.heitechsoft.com","Canada", "18081", "18084"), + ("node.monerodevs.org", "Canada", "18089", "18084"), + ("xmr3.rs.me", "Germany", "18089", "18084"), + ("node.cryptocano.de", "Germany", "18089", "18083"), + ("p2pmd.xmrvsbeast.com", "Germany", "18081", "18083"), + ("fbx.tranbert.com", "France", "18089", "18084"), + ("node2.monerodevs.org", "France", "18089", "18084"), + ("p2pool.uk", "United Kingdom", "18089", "18084"), + ("home.allantaylor.kiwi", "New Zealand", "18089", "18083"), + ("xmr1.rs.me", "Singapore", "18089", "18084"), + ("xmr2.rs.me", "United States", "18089", "18084"), + ("xmr.support", "United States", "18081", "18083"), + ("sf.xmr.support", "United States", "18081", "18083"), + ("xmrbandwagon.hopto.org", "United States", "18081", "18084"), + ("xmr.spotlightsound.com", "United States", "18081", "18084"), + ("xmrnode.facspro.net", "United States", "18089", "18084"), + ("moneronode.ddns.net", "United States", "18089", "18084"), + ("node.richfowler.net", "United States", "18089", "18084"), ]; pub const REMOTE_NODE_LENGTH: usize = REMOTE_NODES.len();