node: add sf.xmr.support

This is probably just a redirect to `xmr.support` though.
This commit is contained in:
hinto.janai 2023-07-13 11:55:47 -04:00
parent 92ec78f971
commit 725f1416da
No known key found for this signature in database
GPG key ID: D47CE05FA175A499
3 changed files with 4 additions and 1 deletions

View file

@ -1,6 +1,7 @@
# v1.2.4
## Updates
* [Remote Node](https://github.com/hinto-janai/gupax#remote-monero-nodes) changes:
- Added `sf.xmr.support`
- Removed `xmr.aa78i2efsewr0neeknk.xyz`
- Removed `node.yeetin.me`
- Removed `monero2.10z.com.ar`

View file

@ -573,6 +573,7 @@ These are the remote nodes used by Gupax in the `[P2Pool Simple]` tab. They are
| home.allantaylor.kiwi | 🇳🇿 NZ - Canterbury | 18089 | 18083 |
| ru.poiuty.com | 🇷🇺 RU - Kuzbass | 18081 | 18084 |
| xmr.support | 🇺🇸 US - California | 18081 | 18083 |
| sf.xmr.support | 🇺🇸 US - California | 18081 | 18083 |
| xmrbandwagon.hopto.org | 🇺🇸 US - Colorado | 18081 | 18084 |
| xmr.spotlightsound.com | 🇺🇸 US - Kansas | 18081 | 18084 |
| xmrnode.facspro.net | 🇺🇸 US - Nebraska | 18089 | 18084 |

View file

@ -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); 15] = [
pub const REMOTE_NODES: [(&str, &str, &str, &str); 16] = [
("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"),
@ -44,6 +44,7 @@ pub const REMOTE_NODES: [(&str, &str, &str, &str); 15] = [
("home.allantaylor.kiwi", "NZ - Canterbury", "18089", "18083"),
("ru.poiuty.com", "RU - Kuzbass", "18081", "18084"),
("xmr.support", "US - California", "18081", "18083"),
("sf.xmr.support", "US - California", "18081", "18083"),
("xmrbandwagon.hopto.org", "US - Colorado", "18081", "18084"),
("xmr.spotlightsound.com", "US - Kansas", "18081", "18084"),
("xmrnode.facspro.net", "US - Nebraska", "18089", "18084"),