mirror of
https://github.com/Cyrix126/gupaxx.git
synced 2024-12-22 22:59:27 +00:00
node: remove escom.sadovo.com
This commit is contained in:
parent
31b1545d40
commit
5b1b414607
2 changed files with 2 additions and 4 deletions
|
@ -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 |
|
| IP/Domain | Location | RPC Port | ZMQ Port |
|
||||||
|----------------------------------|-----------------------------------|----------|-------------|
|
|----------------------------------|-----------------------------------|----------|-------------|
|
||||||
| monero.10z.com.ar | 🇦🇷 AR - Buenos Aires F.D. | 18089 | 18084 |
|
| 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 |
|
| monero2.10z.com.ar | 🇧🇷 BR - São Paulo | 18089 | 18083 |
|
||||||
| monero1.heitechsoft.com | 🇨🇦 CA - Ontario | 18081 | 18084 |
|
| monero1.heitechsoft.com | 🇨🇦 CA - Ontario | 18081 | 18084 |
|
||||||
| node.monerodevs.org | 🇨🇦 CA - Quebec | 18089 | 18084 |
|
| node.monerodevs.org | 🇨🇦 CA - Quebec | 18089 | 18084 |
|
||||||
|
|
|
@ -36,7 +36,6 @@ use hyper::{
|
||||||
|
|
||||||
pub const REMOTE_NODES: [(&str, &str, &str, &str); 24] = [
|
pub const REMOTE_NODES: [(&str, &str, &str, &str); 24] = [
|
||||||
("monero.10z.com.ar", "AR - Buenos Aires F.D.", "18089", "18084"),
|
("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"),
|
("monero2.10z.com.ar", "BR - São Paulo", "18089", "18083"),
|
||||||
("monero1.heitechsoft.com", "CA - Ontario", "18081", "18084"),
|
("monero1.heitechsoft.com", "CA - Ontario", "18081", "18084"),
|
||||||
("node.monerodevs.org", "CA - Quebec", "18089", "18084"),
|
("node.monerodevs.org", "CA - Quebec", "18089", "18084"),
|
||||||
|
@ -456,7 +455,7 @@ mod test {
|
||||||
'outer: for (ip, _, rpc, zmq) in REMOTE_NODES {
|
'outer: for (ip, _, rpc, zmq) in REMOTE_NODES {
|
||||||
println!("[{n}/{REMOTE_NODE_LENGTH}] {ip} | {rpc} | {zmq}");
|
println!("[{n}/{REMOTE_NODE_LENGTH}] {ip} | {rpc} | {zmq}");
|
||||||
let client = client.clone();
|
let client = client.clone();
|
||||||
// Try 5 times before failure
|
// Try 3 times before failure
|
||||||
let mut i = 1;
|
let mut i = 1;
|
||||||
let mut response = loop {
|
let mut response = loop {
|
||||||
let request = Request::builder()
|
let request = Request::builder()
|
||||||
|
@ -469,7 +468,7 @@ mod test {
|
||||||
Ok(response) => break response,
|
Ok(response) => break response,
|
||||||
Err(e) => {
|
Err(e) => {
|
||||||
println!("{:#?}", e);
|
println!("{:#?}", e);
|
||||||
if i > 5 {
|
if i >= 3 {
|
||||||
use std::fmt::Write;
|
use std::fmt::Write;
|
||||||
writeln!(failures, "Node failure: {ip}:{rpc}:{zmq}");
|
writeln!(failures, "Node failure: {ip}:{rpc}:{zmq}");
|
||||||
failure_count += 1;
|
failure_count += 1;
|
||||||
|
|
Loading…
Reference in a new issue