Skip to content

Commit 4591c1f

Browse files
committed
[FIX] Fixes #2252
1 parent e7f1408 commit 4591c1f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/smarty_globals.inc.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
$iCurrentPoolHashrate = $statistics->getCurrentHashrate();
2727

2828
// Avoid confusion, ensure our nethash isn't higher than poolhash
29-
if ($iCurrentPoolHashrate > $dNetworkHashrate / 1000) $dNetworkHashrate = $iCurrentPoolHashrate;
29+
if ($iCurrentPoolHashrate > $dNetworkHashrate / 1000) $dNetworkHashrate = $iCurrentPoolHashrate * 1000;
3030

3131
// Baseline network hashrate for templates
3232
if ( ! $dPersonalHashrateModifier = $setting->getValue('statistics_personal_hashrate_modifier') ) $dPersonalHashrateModifier = 1;

0 commit comments

Comments
 (0)