diff --git a/CHANGELOG.md b/CHANGELOG.md index 076b732..a541d8a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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` diff --git a/README.md b/README.md index b5aee27..c19b20c 100644 --- a/README.md +++ b/README.md @@ -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 | diff --git a/src/node.rs b/src/node.rs index 469862c..ea8e9f5 100644 --- a/src/node.rs +++ b/src/node.rs @@ -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"),