diff --git a/CHANGELOG.md b/CHANGELOG.md index 4653262..210ae68 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,16 @@ +# v1.3.9 +## Changes +* [Remote Node](https://github.com/hinto-janai/gupax#remote-monero-nodes) changes: + - Removed `xmrnode.facspro.net` (thanks @SChernykh [#94](https://github.com/hinto-janai/gupax/issues/94)) + +## Bundled Versions +* [`P2Pool v4.0`](https://github.com/SChernykh/p2pool/releases/tag/v4.0) +* [`XMRig v6.21.3`](https://github.com/xmrig/xmrig/releases/tag/v6.21.3) + + +--- + + # v1.3.8 ## Changes * [Remote Node](https://github.com/hinto-janai/gupax#remote-monero-nodes) changes: diff --git a/README.md b/README.md index 87cbbfd..61e155c 100644 --- a/README.md +++ b/README.md @@ -579,7 +579,6 @@ These are the remote nodes used by Gupax in the `[P2Pool Simple]` tab. | 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 | | node.richfowler.net | 🇺🇸 United States | 18089 | 18084 | ## Build diff --git a/src/node.rs b/src/node.rs index e14d8f2..5d77f65 100644 --- a/src/node.rs +++ b/src/node.rs @@ -28,7 +28,7 @@ use std::time::{Duration, Instant}; // Remote Monero Nodes with ZMQ enabled. // The format is an array of tuples consisting of: (IP, LOCATION, RPC_PORT, ZMQ_PORT) -pub const REMOTE_NODES: [(&str, &str, &str, &str); 15] = [ +pub const REMOTE_NODES: [(&str, &str, &str, &str); 14] = [ ("monero.10z.com.ar", "Argentina", "18089", "18084"), ("monero1.heitechsoft.com", "Canada", "18081", "18084"), ("node.monerodevs.org", "Canada", "18089", "18084"), @@ -42,7 +42,6 @@ pub const REMOTE_NODES: [(&str, &str, &str, &str); 15] = [ ("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"), ("node.richfowler.net", "United States", "18089", "18084"), ];