Adjust hashrate metrics for testnet

This commit is contained in:
aglkm
2024-05-20 19:02:12 +03:00
parent 50173f9221
commit fca10e1a2c
2 changed files with 11 additions and 3 deletions

View File

@@ -314,7 +314,7 @@ fn disk_usage(dashboard: &State<Arc<Mutex<Dashboard>>>) -> String {
fn network_hashrate(dashboard: &State<Arc<Mutex<Dashboard>>>) -> String {
let data = dashboard.lock().unwrap();
format!("{} KG/s", data.hashrate)
data.hashrate.clone()
}