From 37c62a1f9acbbcb58357cecaeb80b70d797e44ce Mon Sep 17 00:00:00 2001 From: "hinto.janai" Date: Thu, 11 May 2023 16:11:08 -0400 Subject: [PATCH] node: add `node.sethforprivacy.com` --- Cargo.lock | 1 - src/node.rs | 3 ++- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 00a661f..d76618a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1977,7 +1977,6 @@ dependencies = [ "is_elevated", "log", "num-format", - "num_cpus", "once_cell", "portable-pty", "rand 0.8.5", diff --git a/src/node.rs b/src/node.rs index 4900405..9038dcb 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); 20] = [ +pub const REMOTE_NODES: [(&str, &str, &str, &str); 21] = [ ("monero.10z.com.ar", "AR - Buenos Aires F.D.", "18089", "18084"), ("monero2.10z.com.ar", "BR - São Paulo", "18089", "18083"), ("monero1.heitechsoft.com", "CA - Ontario", "18081", "18084"), @@ -53,6 +53,7 @@ pub const REMOTE_NODES: [(&str, &str, &str, &str); 20] = [ ("xmrbandwagon.hopto.org", "US - Colorado", "18081", "18084"), ("xmr.spotlightsound.com", "US - Kansas", "18081", "18084"), ("xmrnode.facspro.net", "US - Nebraska", "18089", "18084"), + ("node.sethforprivacy.com", "US - New York", "18089", "18083"), ("moneronode.ddns.net", "US - Pennsylvania", "18089", "18084"), ("node.richfowler.net", "US - Pennsylvania", "18089", "18084"), ];