diff --git a/CHANGELOG.md b/CHANGELOG.md index a541d8a..0e30cde 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,7 @@ ## Updates * [Remote Node](https://github.com/hinto-janai/gupax#remote-monero-nodes) changes: - Added `sf.xmr.support` + - Added `node.cryptocano.de` - Removed `xmr.aa78i2efsewr0neeknk.xyz` - Removed `node.yeetin.me` - Removed `monero2.10z.com.ar` diff --git a/README.md b/README.md index c19b20c..44ab347 100644 --- a/README.md +++ b/README.md @@ -568,6 +568,7 @@ These are the remote nodes used by Gupax in the `[P2Pool Simple]` tab. They are | monero1.heitechsoft.com | 🇨🇦 CA - Ontario | 18081 | 18084 | | node.monerodevs.org | 🇨🇦 CA - Quebec | 18089 | 18084 | | p2pmd.xmrvsbeast.com | 🇩🇪 DE - Hesse | 18081 | 18083 | +| node.cryptocano.de | 🇩🇪 DE - Lower Saxony | 18089 | 18083 | | node2.monerodevs.org | 🇫🇷 FR - Occitanie | 18089 | 18084 | | p2pool.uk | 🇬🇧 GB - England | 18089 | 18084 | | home.allantaylor.kiwi | 🇳🇿 NZ - Canterbury | 18089 | 18083 | diff --git a/src/node.rs b/src/node.rs index ea8e9f5..ba02a95 100644 --- a/src/node.rs +++ b/src/node.rs @@ -38,6 +38,7 @@ 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"), + ("node.cryptocano.de", "DE - Lower Saxony", "18089", "18083"), ("p2pmd.xmrvsbeast.com", "DE - Hesse", "18081", "18083"), ("node2.monerodevs.org", "FR - Occitanie", "18089", "18084"), ("p2pool.uk", "GB - England", "18089", "18084"),