Signed-off-by: Roland Häder <haeder@hmmdeutschland.de>
$GLOBALS['none_increment'] = (1 / pow(10, 12));
$GLOBALS['hash_algo'] = MHASH_RIPEMD320;
$GLOBALS['flush_file_time'] = 10;
-$GLOBALS['restart_search_time'] = 3600 * 12;
+$GLOBALS['restart_search_time'] = 1800;
// Hashes per call
$GLOBALS['hash_cycles'] = 3;
*/
function calculateNonce () {
// Linear incrementation
- $GLOBALS['nonce'] = $GLOBALS['nonce'] + $GLOBALS['none_increment'];
+ $GLOBALS['nonce'] += $GLOBALS['none_increment'];
}
/**