diff --git a/README.md b/README.md index bdef2ae..5a05175 100644 --- a/README.md +++ b/README.md @@ -583,7 +583,6 @@ These are the remote nodes used by Gupax in the `[P2Pool Simple]` tab. They are | xmrnode.facspro.net | 🇺🇸 US - Nebraska | 18089 | 18084 | | moneronode.ddns.net | 🇺🇸 US - Pennsylvania | 18089 | 18084 | | node.richfowler.net | 🇺🇸 US - Pennsylvania | 18089 | 18084 | -| monero.jameswillhoite.com | 🇺🇸 US - Ohio | 18089 | 18084 | These are community nodes that **DON'T** have ZMQ enabled but are fast and well-known. These are not used in Gupax but can be used for general Monero usage. diff --git a/src/node.rs b/src/node.rs index 76365e8..c2b33cb 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); 24] = [ +pub const REMOTE_NODES: [(&str, &str, &str, &str); 23] = [ ("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"), @@ -57,7 +57,6 @@ pub const REMOTE_NODES: [(&str, &str, &str, &str); 24] = [ ("xmrnode.facspro.net", "US - Nebraska", "18089", "18084"), ("moneronode.ddns.net", "US - Pennsylvania", "18089", "18084"), ("node.richfowler.net", "US - Pennsylvania", "18089", "18084"), - ("monero.jameswillhoite.com", "US - Ohio", "18089", "18084"), ]; pub const REMOTE_NODE_LENGTH: usize = REMOTE_NODES.len();