From 1ff429ea657d6426139a6a04291924a016256035 Mon Sep 17 00:00:00 2001 From: Ronald Lonnborg Jr Date: Fri, 10 Apr 2020 19:42:15 -0500 Subject: [PATCH] Missing Network Hash-Rate for Digibyte Coin Correction by Alexg --- web/yaamp/modules/site/results/current_results.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/web/yaamp/modules/site/results/current_results.php b/web/yaamp/modules/site/results/current_results.php index 72520a014..322469ace 100644 --- a/web/yaamp/modules/site/results/current_results.php +++ b/web/yaamp/modules/site/results/current_results.php @@ -195,6 +195,10 @@ function cmp($a, $b) ->memcache ->set("yiimp-nethashrate-{$coin->symbol}", $network_hash, 60); } + else if($remote->getnetworkhashps()){ + $network_hash = $remote->getnetworkhashps(); + controller()->memcache->set("yiimp-nethashrate-{$coin->symbol}", $network_hash, 60); +} } $network_hash = $network_hash ? Itoa2($network_hash) . 'h/s' : ''; echo "$network_hash";