Skip to content

Commit 928385c

Browse files
committed
Fix PHP notice with 0 difficulty
1 parent 47c9bda commit 928385c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

public/include/smarty_globals.inc.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
$dDifficulty = $bitcoin->getdifficulty();
1818
$dNetworkHashrate = $bitcoin->getnetworkhashps();
1919
} else {
20-
$dDifficulty = 0;
20+
$dDifficulty = 1;
2121
$dNetworkHashrate = 0;
2222
}
2323

0 commit comments

Comments
 (0)