From 4253d604970e9db0d64c2cda0aeec0c6531bbb62 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Fri, 26 Sep 2014 09:51:28 +0200 Subject: [PATCH] much smaller number for nonce-incrementation MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Roland Häder --- contrib/chash/chash.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.39.2