node: add bunkernet.ddns.net

This commit is contained in:
hinto.janai 2023-07-13 11:59:34 -04:00
parent a1a070b1ce
commit b8d02617e7
No known key found for this signature in database
GPG key ID: D47CE05FA175A499
3 changed files with 3 additions and 0 deletions

View file

@ -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`

View file

@ -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

View file

@ -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();