From 430fa8f78c1276f5663179b0846a33b470129652 Mon Sep 17 00:00:00 2001 From: "hinto.janai" Date: Fri, 24 Nov 2023 09:34:34 -0500 Subject: [PATCH] ui: link to https://xmrig.com/benchmark instead --- src/constants.rs | 2 +- src/node.rs | 2 +- src/status.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/constants.rs b/src/constants.rs index a132a8b..2f5e76b 100644 --- a/src/constants.rs +++ b/src/constants.rs @@ -216,7 +216,7 @@ pub const STATUS_SUBMENU_YOUR_RANK: &str = "Your CPU's rank out of all CP pub const STATUS_SUBMENU_YOUR_HIGH: &str = "The highest hashrate recorded for your CPU on [https://xmrig.com/benchmark]"; pub const STATUS_SUBMENU_YOUR_AVERAGE: &str = "The average hashrate of your CPU based off the data at [https://xmrig.com/benchmark]"; pub const STATUS_SUBMENU_YOUR_LOW: &str = "The lowest hashrate recorded for your CPU on [https://xmrig.com/benchmark]"; -pub const STATUS_SUBMENU_OTHER_CPUS: &str = "A list of ALL the recorded CPU benchmarks. The CPUs most similar to yours are listed first. All this data is taken from [https://github.com/hinto-janai/xmrig-benchmarks] which itself takes from [https://xmrig.com/benchmark]."; +pub const STATUS_SUBMENU_OTHER_CPUS: &str = "A list of ALL the recorded CPU benchmarks. The CPUs most similar to yours are listed first. All this data is taken from [https://xmrig.com/benchmark]."; pub const STATUS_SUBMENU_OTHER_CPU: &str = "The CPU name"; pub const STATUS_SUBMENU_OTHER_RELATIVE: &str = "The relative hashrate power compared to the fastest recorded CPU, which is current: [AMD EPYC 7T83 64-Core Processor]"; pub const STATUS_SUBMENU_OTHER_HIGH: &str = "Highest hashrate record"; diff --git a/src/node.rs b/src/node.rs index 1933479..21a6382 100644 --- a/src/node.rs +++ b/src/node.rs @@ -31,7 +31,7 @@ use hyper::{ }; //---------------------------------------------------------------------------------------------------- Node list -// Remote Monero Nodes with ZMQ enabled, sourced from: [https://github.com/hinto-janai/monero-nodes] +// 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); 18] = [ diff --git a/src/status.rs b/src/status.rs index 1963559..9dcc3f1 100644 --- a/src/status.rs +++ b/src/status.rs @@ -324,7 +324,7 @@ pub fn show(&mut self, sys: &Arc>, p2pool_api: &Arc