node: remove escom.sadovo.com

This commit is contained in:
hinto.janai 2023-04-24 13:34:52 -04:00
parent 31b1545d40
commit 5b1b414607
No known key found for this signature in database
GPG key ID: D47CE05FA175A499
2 changed files with 2 additions and 4 deletions

View file

@ -562,7 +562,6 @@ These are the remote nodes used by Gupax in the `[P2Pool Simple]` tab. They are
| IP/Domain | Location | RPC Port | ZMQ Port |
|----------------------------------|-----------------------------------|----------|-------------|
| monero.10z.com.ar | 🇦🇷 AR - Buenos Aires F.D. | 18089 | 18084 |
| escom.sadovo.com | 🇧🇬 BG - Plovdiv | 18089 | 18084 |
| monero2.10z.com.ar | 🇧🇷 BR - São Paulo | 18089 | 18083 |
| monero1.heitechsoft.com | 🇨🇦 CA - Ontario | 18081 | 18084 |
| node.monerodevs.org | 🇨🇦 CA - Quebec | 18089 | 18084 |

View file

@ -36,7 +36,6 @@ use hyper::{
pub const REMOTE_NODES: [(&str, &str, &str, &str); 24] = [
("monero.10z.com.ar", "AR - Buenos Aires F.D.", "18089", "18084"),
("escom.sadovo.com", "BG - Plovdiv", "18089", "18084"),
("monero2.10z.com.ar", "BR - São Paulo", "18089", "18083"),
("monero1.heitechsoft.com", "CA - Ontario", "18081", "18084"),
("node.monerodevs.org", "CA - Quebec", "18089", "18084"),
@ -456,7 +455,7 @@ mod test {
'outer: for (ip, _, rpc, zmq) in REMOTE_NODES {
println!("[{n}/{REMOTE_NODE_LENGTH}] {ip} | {rpc} | {zmq}");
let client = client.clone();
// Try 5 times before failure
// Try 3 times before failure
let mut i = 1;
let mut response = loop {
let request = Request::builder()
@ -469,7 +468,7 @@ mod test {
Ok(response) => break response,
Err(e) => {
println!("{:#?}", e);
if i > 5 {
if i >= 3 {
use std::fmt::Write;
writeln!(failures, "Node failure: {ip}:{rpc}:{zmq}");
failure_count += 1;