mirror of
https://github.com/Cyrix126/gupaxx.git
synced 2024-12-22 22:59:27 +00:00
feat: merge from upstream
Some checks failed
CI / ci (macos-latest) (push) Has been cancelled
CI / ci (ubuntu-latest) (push) Has been cancelled
Rust / fmt (push) Has been cancelled
Rust / test (macos-latest) (push) Has been cancelled
Rust / test (ubuntu-latest) (push) Has been cancelled
Rust / typo (push) Has been cancelled
Rust / clippy (macos-latest) (push) Has been cancelled
Rust / clippy (ubuntu-latest) (push) Has been cancelled
Rust / check (macos-latest) (push) Has been cancelled
Rust / check (ubuntu-latest) (push) Has been cancelled
Rust / doc (macos-latest) (push) Has been cancelled
Rust / doc (ubuntu-latest) (push) Has been cancelled
Typo / typo (push) Has been cancelled
Some checks failed
CI / ci (macos-latest) (push) Has been cancelled
CI / ci (ubuntu-latest) (push) Has been cancelled
Rust / fmt (push) Has been cancelled
Rust / test (macos-latest) (push) Has been cancelled
Rust / test (ubuntu-latest) (push) Has been cancelled
Rust / typo (push) Has been cancelled
Rust / clippy (macos-latest) (push) Has been cancelled
Rust / clippy (ubuntu-latest) (push) Has been cancelled
Rust / check (macos-latest) (push) Has been cancelled
Rust / check (ubuntu-latest) (push) Has been cancelled
Rust / doc (macos-latest) (push) Has been cancelled
Rust / doc (ubuntu-latest) (push) Has been cancelled
Typo / typo (push) Has been cancelled
remove node add random date for tar/zip packaging
This commit is contained in:
commit
c0e119339f
2 changed files with 5 additions and 2 deletions
|
@ -28,7 +28,7 @@ use std::time::{Duration, Instant};
|
||||||
// Remote Monero Nodes with ZMQ enabled.
|
// Remote Monero Nodes with ZMQ enabled.
|
||||||
// The format is an array of tuples consisting of: (IP, LOCATION, RPC_PORT, ZMQ_PORT)
|
// 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"),
|
("monero.10z.com.ar", "Argentina", "18089", "18084"),
|
||||||
("monero1.heitechsoft.com", "Canada", "18081", "18084"),
|
("monero1.heitechsoft.com", "Canada", "18081", "18084"),
|
||||||
("node.monerodevs.org", "Canada", "18089", "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"),
|
("sf.xmr.support", "United States", "18081", "18083"),
|
||||||
("xmrbandwagon.hopto.org", "United States", "18081", "18084"),
|
("xmrbandwagon.hopto.org", "United States", "18081", "18084"),
|
||||||
("xmr.spotlightsound.com", "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"),
|
("node.richfowler.net", "United States", "18089", "18084"),
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
@ -54,6 +54,10 @@ title "Windows folder check"
|
||||||
[[ -f windows_b/XMRig/xmrig.exe ]]; check "windows_b/XMRig/xmrig.exe"
|
[[ -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"
|
[[ -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
|
# Tar Linux Bundle
|
||||||
title "Tar Linux"
|
title "Tar Linux"
|
||||||
|
|
Loading…
Reference in a new issue