fix(cli): Remove malicious node.moneroworld remote node (#85)

The moneroworld node has been confirmed to have been operated by Chainalysis, a company specialising in blockchain surveillance. They are collecting the ip addresses of anyone who connects to the node.

See https://www.digilol.net/blog/chainanalysis-malicious-xmr.html
This commit is contained in:
binarybaron 2024-09-18 22:48:30 +02:00 committed by GitHub
parent 9d1151c3d3
commit beccd23280
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -22,10 +22,9 @@ use tokio_util::io::StreamReader;
// See: https://www.moneroworld.com/#nodes, https://monero.fail
// We don't need any testnet nodes because we don't support testnet at all
const MONERO_DAEMONS: [MoneroDaemon; 17] = [
const MONERO_DAEMONS: [MoneroDaemon; 16] = [
MoneroDaemon::new("xmr-node.cakewallet.com", 18081, Network::Mainnet),
MoneroDaemon::new("nodex.monerujo.io", 18081, Network::Mainnet),
MoneroDaemon::new("node.moneroworld.com", 18089, Network::Mainnet),
MoneroDaemon::new("nodes.hashvault.pro", 18081, Network::Mainnet),
MoneroDaemon::new("p2pmd.xmrvsbeast.com", 18081, Network::Mainnet),
MoneroDaemon::new("node.monerodevs.org", 18089, Network::Mainnet),