diff --git a/CHANGELOG.md b/CHANGELOG.md index 6225a20..8ece9fc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,7 @@ - Removed `monero2.10z.com.ar` - Removed `node.moneroworld.com` - Removed `de.poiuty.com` + - Removed `m1.poiuty.com` ## Fixes * diff --git a/README.md b/README.md index 0506aae..5afa508 100644 --- a/README.md +++ b/README.md @@ -567,7 +567,6 @@ These are the remote nodes used by Gupax in the `[P2Pool Simple]` tab. They are | 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 | -| m1.poiuty.com | πŸ‡©πŸ‡ͺ DE - Berlin | 18081 | 18084 | | p2pmd.xmrvsbeast.com | πŸ‡©πŸ‡ͺ DE - Hesse | 18081 | 18083 | | reynald.ro | πŸ‡«πŸ‡· FR - Île-de-France | 18089 | 18084 | | node2.monerodevs.org | πŸ‡«πŸ‡· FR - Occitanie | 18089 | 18084 | diff --git a/src/node.rs b/src/node.rs index 51a2ff0..4c8c1b1 100644 --- a/src/node.rs +++ b/src/node.rs @@ -34,11 +34,10 @@ 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); 21] = [ +pub const REMOTE_NODES: [(&str, &str, &str, &str); 20] = [ ("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"), - ("m1.poiuty.com", "DE - Berlin", "18081", "18084"), ("p2pmd.xmrvsbeast.com", "DE - Hesse", "18081", "18083"), ("reynald.ro", "FR - Île-de-France", "18089", "18084"), ("node2.monerodevs.org", "FR - Occitanie", "18089", "18084"),