node: remove monero.jameswillhoite.com

This commit is contained in:
hinto.janai 2023-04-24 13:35:57 -04:00
parent 5b1b414607
commit 6187d45528
No known key found for this signature in database
GPG key ID: D47CE05FA175A499
2 changed files with 1 additions and 3 deletions

View file

@ -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 | | xmrnode.facspro.net | 🇺🇸 US - Nebraska | 18089 | 18084 |
| moneronode.ddns.net | 🇺🇸 US - Pennsylvania | 18089 | 18084 | | moneronode.ddns.net | 🇺🇸 US - Pennsylvania | 18089 | 18084 |
| node.richfowler.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. 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.

View file

@ -34,7 +34,7 @@ use hyper::{
// Remote Monero Nodes with ZMQ enabled, sourced from: [https://github.com/hinto-janai/monero-nodes] // 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) // 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"), ("monero.10z.com.ar", "AR - Buenos Aires F.D.", "18089", "18084"),
("monero2.10z.com.ar", "BR - São Paulo", "18089", "18083"), ("monero2.10z.com.ar", "BR - São Paulo", "18089", "18083"),
("monero1.heitechsoft.com", "CA - Ontario", "18081", "18084"), ("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"), ("xmrnode.facspro.net", "US - Nebraska", "18089", "18084"),
("moneronode.ddns.net", "US - Pennsylvania", "18089", "18084"), ("moneronode.ddns.net", "US - Pennsylvania", "18089", "18084"),
("node.richfowler.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(); pub const REMOTE_NODE_LENGTH: usize = REMOTE_NODES.len();