[FIX] Network hashrate in khash before checks

This commit is contained in:
Sebastian Grewe 2014-02-03 08:20:10 +01:00
parent a9b56433cb
commit 9012f480d6

View File

@ -31,7 +31,7 @@ chdir(dirname(__FILE__));
require_once('shared.inc.php');
// Fetch hashrates
$dNetworkHashrate = $bitcoin->getnetworkhashps();
$dNetworkHashrate = $bitcoin->getnetworkhashps() / 1000;
$dPoolHashrate = $statistics->getCurrentHashrate();
$iPercentage = round(100 / $dNetworkHashrate * $dPoolHashrate, 0);