diff --git a/README.md b/README.md index 2a5c627..bc14fdb 100644 --- a/README.md +++ b/README.md @@ -579,7 +579,6 @@ These are the remote nodes used by Gupax in the `[P2Pool Simple]` tab. They are | xmrbandwagon.hopto.org | πŸ‡ΊπŸ‡Έ US - Colorado | 18081 | 18084 | | xmr.spotlightsound.com | πŸ‡ΊπŸ‡Έ US - Kansas | 18081 | 18084 | | xmrnode.facspro.net | πŸ‡ΊπŸ‡Έ US - Nebraska | 18089 | 18084 | -| xmr.theuplink.net | πŸ‡ΊπŸ‡Έ US - New York | 18081 | 18084 | | moneronode.ddns.net | πŸ‡ΊπŸ‡Έ US - Pennsylvania | 18089 | 18084 | | node.richfowler.net | πŸ‡ΊπŸ‡Έ US - Pennsylvania | 18089 | 18084 | | bunkernet.ddns.net | πŸ‡ΏπŸ‡¦ ZA - Western Cape | 18089 | 18084 | diff --git a/src/node.rs b/src/node.rs index f3ab5d0..1aa0c31 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); 19] = [ +pub const REMOTE_NODES: [(&str, &str, &str, &str); 18] = [ ("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"), @@ -50,7 +50,6 @@ pub const REMOTE_NODES: [(&str, &str, &str, &str); 19] = [ ("xmrbandwagon.hopto.org", "US - Colorado", "18081", "18084"), ("xmr.spotlightsound.com", "US - Kansas", "18081", "18084"), ("xmrnode.facspro.net", "US - Nebraska", "18089", "18084"), - ("xmr.theuplink.net", "US - New York", "18081", "18084"), ("moneronode.ddns.net", "US - Pennsylvania", "18089", "18084"), ("node.richfowler.net", "US - Pennsylvania", "18089", "18084"), ("bunkernet.ddns.net", "ZA - Western Cape", "18089", "18084"),