node: remove xmrnode.facspro.net
Some checks failed
CI / ci (windows-2019) (push) Has been cancelled
gupax.io / build (push) Has been cancelled
Remote Node Ping / build (push) Has been cancelled
Typo / typo (push) Has been cancelled
Cache `gupax.io` / build (push) Has been cancelled
CI / ci (macos-11) (push) Has been cancelled
CI / ci (ubuntu-20.04) (push) Has been cancelled

This commit is contained in:
hinto.janai 2024-07-01 12:21:11 -04:00
parent 77d7f5003a
commit 6465a3e30b
No known key found for this signature in database
GPG key ID: D47CE05FA175A499
3 changed files with 14 additions and 3 deletions

View file

@ -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 # v1.3.8
## Changes ## Changes
* [Remote Node](https://github.com/hinto-janai/gupax#remote-monero-nodes) changes: * [Remote Node](https://github.com/hinto-janai/gupax#remote-monero-nodes) changes:

View file

@ -579,7 +579,6 @@ These are the remote nodes used by Gupax in the `[P2Pool Simple]` tab.
| sf.xmr.support | 🇺🇸 United States | 18081 | 18083 | | sf.xmr.support | 🇺🇸 United States | 18081 | 18083 |
| xmrbandwagon.hopto.org | 🇺🇸 United States | 18081 | 18084 | | xmrbandwagon.hopto.org | 🇺🇸 United States | 18081 | 18084 |
| xmr.spotlightsound.com | 🇺🇸 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 | | node.richfowler.net | 🇺🇸 United States | 18089 | 18084 |
## Build ## Build

View file

@ -28,7 +28,7 @@ use std::time::{Duration, Instant};
// Remote Monero Nodes with ZMQ enabled. // Remote Monero Nodes with ZMQ enabled.
// 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); 15] = [ pub const REMOTE_NODES: [(&str, &str, &str, &str); 14] = [
("monero.10z.com.ar", "Argentina", "18089", "18084"), ("monero.10z.com.ar", "Argentina", "18089", "18084"),
("monero1.heitechsoft.com", "Canada", "18081", "18084"), ("monero1.heitechsoft.com", "Canada", "18081", "18084"),
("node.monerodevs.org", "Canada", "18089", "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"), ("sf.xmr.support", "United States", "18081", "18083"),
("xmrbandwagon.hopto.org", "United States", "18081", "18084"), ("xmrbandwagon.hopto.org", "United States", "18081", "18084"),
("xmr.spotlightsound.com", "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"), ("node.richfowler.net", "United States", "18089", "18084"),
]; ];