diff --git a/src/components/node.rs b/src/components/node.rs index c9a6363..dec4314 100644 --- a/src/components/node.rs +++ b/src/components/node.rs @@ -28,7 +28,7 @@ use std::time::{Duration, Instant}; // Remote Monero Nodes with ZMQ enabled. // The format is an array of tuples consisting of: (IP, LOCATION, RPC_PORT, ZMQ_PORT) -pub const REMOTE_NODES: [(&str, &str, &str, &str); 15] = [ +pub const REMOTE_NODES: [(&str, &str, &str, &str); 14] = [ ("monero.10z.com.ar", "Argentina", "18089", "18084"), ("monero1.heitechsoft.com", "Canada", "18081", "18084"), ("node.monerodevs.org", "Canada", "18089", "18084"), @@ -42,7 +42,6 @@ pub const REMOTE_NODES: [(&str, &str, &str, &str); 15] = [ ("sf.xmr.support", "United States", "18081", "18083"), ("xmrbandwagon.hopto.org", "United States", "18081", "18084"), ("xmr.spotlightsound.com", "United States", "18081", "18084"), - ("xmrnode.facspro.net", "United States", "18089", "18084"), ("node.richfowler.net", "United States", "18089", "18084"), ]; diff --git a/utils/package.sh b/utils/package.sh index 5723699..f30853a 100755 --- a/utils/package.sh +++ b/utils/package.sh @@ -54,6 +54,10 @@ title "Windows folder check" [[ -f windows_b/XMRig/xmrig.exe ]]; check "windows_b/XMRig/xmrig.exe" [[ -f windows_b/XMRig-Proxy/xmrig-proxy.exe ]]; check "windows_b/XMRig-Proxy/xmrig-proxy.exe" +# Get random date for tar/zip +title "RNG Date" +RNG=$((EPOCHSECONDS-RANDOM*4)); check "RNG ... $RNG" +DATE=$(date -d @${RNG}); check "DATE ... $DATE" # Tar Linux Bundle title "Tar Linux"