diff --git a/CHANGELOG.md b/CHANGELOG.md index 0e30cde..9224832 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,7 @@ * [Remote Node](https://github.com/hinto-janai/gupax#remote-monero-nodes) changes: - Added `sf.xmr.support` - Added `node.cryptocano.de` + - Added `bunkernet.ddns.net` - Removed `xmr.aa78i2efsewr0neeknk.xyz` - Removed `node.yeetin.me` - Removed `monero2.10z.com.ar` diff --git a/README.md b/README.md index 44ab347..352925b 100644 --- a/README.md +++ b/README.md @@ -581,6 +581,7 @@ These are the remote nodes used by Gupax in the `[P2Pool Simple]` tab. They are | xmr.theuplink.net | πŸ‡ΊπŸ‡Έ US - New York | 18081 | 18084 | | moneronode.ddns.net | πŸ‡ΊπŸ‡Έ US - Pennsylvania | 18089 | 18084 | | node.richfowler.net | πŸ‡ΊπŸ‡Έ US - Pennsylvania | 18089 | 18084 | +| bunkernet.ddns.net | πŸ‡ΏπŸ‡¦ ZA - Western Cape | 18089 | 18084 | ## Build ### General Info diff --git a/src/node.rs b/src/node.rs index ba02a95..d4c5c22 100644 --- a/src/node.rs +++ b/src/node.rs @@ -52,6 +52,7 @@ pub const REMOTE_NODES: [(&str, &str, &str, &str); 16] = [ ("xmr.theuplink.net", "US - New York", "18081", "18084"), ("moneronode.ddns.net", "US - Pennsylvania", "18089", "18084"), ("node.richfowler.net", "US - Pennsylvania", "18089", "18084"), + ("bunkernet.ddns.net", "ZA - Western Cape", "18089", "18084"), ]; pub const REMOTE_NODE_LENGTH: usize = REMOTE_NODES.len();