From: Roland Häder Date: Fri, 26 Sep 2014 07:51:28 +0000 (+0200) Subject: much smaller number for nonce-incrementation X-Git-Url: https://git.mxchange.org/?p=core.git;a=commitdiff_plain;h=4253d604970e9db0d64c2cda0aeec0c6531bbb62 much smaller number for nonce-incrementation Signed-off-by: Roland Häder --- diff --git a/contrib/chash/chash.php b/contrib/chash/chash.php index 0ebd6dcb..7db1f73a 100644 --- a/contrib/chash/chash.php +++ b/contrib/chash/chash.php @@ -5,7 +5,7 @@ define('START_TIME' , microtime(TRUE)); define('CHECK_POINT' , 'chash.pos'); $GLOBALS['block_size'] = 100; -$GLOBALS['none_increment'] = (1 / pow(10, 12)); +$GLOBALS['none_increment'] = (1 / pow(10, 20)); $GLOBALS['hash_algo'] = MHASH_RIPEMD320; $GLOBALS['flush_file_time'] = 30; $GLOBALS['restart_search_time'] = 1800;