mirror of
https://github.com/hinto-janai/gupax.git
synced 2024-11-17 01:37:52 +00:00
node: add sf.xmr.support
This is probably just a redirect to `xmr.support` though.
This commit is contained in:
parent
92ec78f971
commit
725f1416da
3 changed files with 4 additions and 1 deletions
|
@ -1,6 +1,7 @@
|
||||||
# v1.2.4
|
# v1.2.4
|
||||||
## Updates
|
## Updates
|
||||||
* [Remote Node](https://github.com/hinto-janai/gupax#remote-monero-nodes) changes:
|
* [Remote Node](https://github.com/hinto-janai/gupax#remote-monero-nodes) changes:
|
||||||
|
- Added `sf.xmr.support`
|
||||||
- Removed `xmr.aa78i2efsewr0neeknk.xyz`
|
- Removed `xmr.aa78i2efsewr0neeknk.xyz`
|
||||||
- Removed `node.yeetin.me`
|
- Removed `node.yeetin.me`
|
||||||
- Removed `monero2.10z.com.ar`
|
- Removed `monero2.10z.com.ar`
|
||||||
|
|
|
@ -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 |
|
| home.allantaylor.kiwi | 🇳🇿 NZ - Canterbury | 18089 | 18083 |
|
||||||
| ru.poiuty.com | 🇷🇺 RU - Kuzbass | 18081 | 18084 |
|
| ru.poiuty.com | 🇷🇺 RU - Kuzbass | 18081 | 18084 |
|
||||||
| xmr.support | 🇺🇸 US - California | 18081 | 18083 |
|
| xmr.support | 🇺🇸 US - California | 18081 | 18083 |
|
||||||
|
| sf.xmr.support | 🇺🇸 US - California | 18081 | 18083 |
|
||||||
| xmrbandwagon.hopto.org | 🇺🇸 US - Colorado | 18081 | 18084 |
|
| xmrbandwagon.hopto.org | 🇺🇸 US - Colorado | 18081 | 18084 |
|
||||||
| xmr.spotlightsound.com | 🇺🇸 US - Kansas | 18081 | 18084 |
|
| xmr.spotlightsound.com | 🇺🇸 US - Kansas | 18081 | 18084 |
|
||||||
| xmrnode.facspro.net | 🇺🇸 US - Nebraska | 18089 | 18084 |
|
| xmrnode.facspro.net | 🇺🇸 US - Nebraska | 18089 | 18084 |
|
||||||
|
|
|
@ -34,7 +34,7 @@ use hyper::{
|
||||||
// Remote Monero Nodes with ZMQ enabled, sourced from: [https://github.com/hinto-janai/monero-nodes]
|
// 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)
|
// 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"),
|
("monero.10z.com.ar", "AR - Buenos Aires F.D.", "18089", "18084"),
|
||||||
("monero1.heitechsoft.com", "CA - Ontario", "18081", "18084"),
|
("monero1.heitechsoft.com", "CA - Ontario", "18081", "18084"),
|
||||||
("node.monerodevs.org", "CA - Quebec", "18089", "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"),
|
("home.allantaylor.kiwi", "NZ - Canterbury", "18089", "18083"),
|
||||||
("ru.poiuty.com", "RU - Kuzbass", "18081", "18084"),
|
("ru.poiuty.com", "RU - Kuzbass", "18081", "18084"),
|
||||||
("xmr.support", "US - California", "18081", "18083"),
|
("xmr.support", "US - California", "18081", "18083"),
|
||||||
|
("sf.xmr.support", "US - California", "18081", "18083"),
|
||||||
("xmrbandwagon.hopto.org", "US - Colorado", "18081", "18084"),
|
("xmrbandwagon.hopto.org", "US - Colorado", "18081", "18084"),
|
||||||
("xmr.spotlightsound.com", "US - Kansas", "18081", "18084"),
|
("xmr.spotlightsound.com", "US - Kansas", "18081", "18084"),
|
||||||
("xmrnode.facspro.net", "US - Nebraska", "18089", "18084"),
|
("xmrnode.facspro.net", "US - Nebraska", "18089", "18084"),
|
||||||
|
|
Loading…
Reference in a new issue