mirror of
https://github.com/hinto-janai/gupax.git
synced 2024-11-16 17:27:37 +00:00
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
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:
parent
77d7f5003a
commit
6465a3e30b
3 changed files with 14 additions and 3 deletions
13
CHANGELOG.md
13
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
|
# 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:
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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"),
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue