Much smaller nonce means much more to calculate + logged it on success (found hash).
[core.git] / contrib / chash / chash.php
index d41a45ba213a2cbd755410665b568e7466a14eb5..6705b960e81887b67cc17d2974c6599fb32a26c8 100644 (file)
@@ -2,10 +2,13 @@
 error_reporting(E_ALL | E_STRICT);
 
 define('HASH_ALGO', MHASH_RIPEMD320);
-define('BLOCK_SIZE', 1000);
-define('NONCE_INCREMENT', 1.0);
+define('BLOCK_SIZE', 100);
+define('NONCE_INCREMENT', 0.0000000000000001);
 define('START_TIME', microtime(TRUE));
 
+// Found hashes
+$foundHashes = array();
+
 /**
  * Continued-hashing
  *
@@ -181,17 +184,6 @@ function calculateNonce ($nonce) {
        return $newNonce;
 }
 
-/**
- * Calculates current block
- *
- * @return     $blockSize      Block size
- * @todo       This needs improvement
- */
-function getBlockSize () {
-       // For now only a constant block size
-       return BLOCK_SIZE;
-}
-
 /*
  * Calculate "genesis" hashes, please note that these "genesis strings" are now
  * known to the public as you can read them here in source code and therefore I
@@ -263,10 +255,7 @@ while (TRUE) {
        // Time waited for a good block again (no iteration)
        $timeBadHashes = 0;
 
-       while ($hashesPerBlock <= getBlockSize()) {
-               // Init counter
-               $iter = 0;
-
+       while (count($foundHashes) <= BLOCK_SIZE) {
                // Create hash from modulaHash ("genesis hash") and nonce
                $nonceHash = doubleHashString($modulaHash . $nonce);
 
@@ -274,21 +263,41 @@ while (TRUE) {
                $sumNonce  = calculateSumFromHash($nonceHash);
                $sumModula = calculateSumFromHash($modulaHash);
 
+               // Init counter
+               $iter = 0;
+               $iterSecond = 0;
+
                // Now start the "mining" ...
                $timeHash = microtime(TRUE);
-               while ($sumNonce <= $sumModula) {
-                       // Calculate sums
-                       $sumNonce  = calculateSumFromHash($nonceHash);
-                       $sumModula = calculateSumFromHash($modulaHash);
-
+               while ($sumNonce >= $sumModula) {
                        // Calculate new nonce
                        $nonce = calculateNonce($nonce);
 
                        // And hash again
                        $nonceHash = doubleHashString($modulaHash . $nonce);
 
+                       // Calculate sums
+                       $sumNonce  = calculateSumFromHash($nonceHash);
+
+                       // Time spend in loop
+                       $testTime = abs(microtime(TRUE) - $timeDisplay);
+
+                       // Calculate hashrate/sec
+                       $hashrate = 1 / $testTime * $iterSecond * 2;
+
+                       // Only every second
+                       if ($testTime >= 1) {
+                               // Display hash rate
+                               print ('hashrate=' . $hashrate . ' hashes/sec,iterSecond=' . $iterSecond . ' iterations/sec' . PHP_EOL);
+
+                               // Reset timer
+                               $timeDisplay = microtime(TRUE);
+                               $iterSecond  = 0;
+                       } // END - if
+
                        // Next round
                        $iter++;
+                       $iterSecond++;
                        //print ('nonce=' . $nonce . ',iter=' . $iter . PHP_EOL);
                        //print ('nonceHash=' . $nonceHash . PHP_EOL);
                        //print ('sumNonce=' . $sumNonce . PHP_EOL);
@@ -297,65 +306,49 @@ while (TRUE) {
 
                // If the iteration is zero, then no hash is found
                if ($iter == 0) {
-                       // Bad block found
+                       // Bad hash found
                        $timeBadHashes += abs(microtime(TRUE) - $timeHash);
 
+                       // And next round
+                       //print('BAD:nonce=' . $nonce . PHP_EOL);
+
                        // Nothing found, so calculate new nonce
                        $nonce = calculateNonce($nonce);
-
-                       // And next round
                        continue;
                } // END - if
 
-               // Add amount of hashes to block (double-hash)
+               // Add amount of hashes per block (double-hash)
                $hashesPerBlock += $iter * 2 + 2;
-
-               // Time spend in loop
-               $testTime = abs(microtime(TRUE) - $timeDisplay);
-
-               // Only every second
-               if ($testTime >= 1) {
-                       // Calculate hashrate/sec
-                       $timeHash = abs(microtime(TRUE) - $timeHash);
-                       $hashrate = 1 / $timeHash * $iter * 2 + 2;
-                       print ('hashesPerBlock=' . $hashesPerBlock . ',hashrate=' . $hashrate . ' hashes/sec.' . PHP_EOL);
-
-                       // Reset timer
-                       $timeDisplay = microtime(TRUE); 
-               } // END - if
+               array_push($foundHashes, $nonceHash);
 
                // Found hash:
-               //print ('nonceHash=' . $nonceHash .',iter=' . $iter . PHP_EOL);
+               print ('FOUND: nonceHash=' . $nonceHash .',nonce=' . $nonce . ',iter=' . $iter . PHP_EOL);
+
+               // Use nonceHash as next modula hash
+               $modulaHash = $nonceHash;
        } // END - while
 
        // Time taken for one block
        $timeBlock = abs(microtime(TRUE) - $timeBlock);
-       //print ('calculateSumFromHash(modulaHash)=' . calculateSumFromHash($modulaHash) . PHP_EOL);
-       //print ('calculateSumFromHash(nonceHash)=' . calculateSumFromHash($nonceHash) . PHP_EOL);
-
-       // Is the hash rate unset?
-       if ($hashrate == 0) {
-               // Then calculate it again
-               $hashrate = 1 / $timeBlock * $iter * 2 + 2;
-       } // END - if
 
        // Calculate reward
-       $reward = abs($timeBlock - $timeBadHashes) / $hashrate * $hashesPerBlock / getBlockSize() * 1000;
+       $reward = abs($timeBlock - $timeBadHashes) / $hashrate * $hashesPerBlock / BLOCK_SIZE * 1000;
        print ('timeBlock=' . $timeBlock . ',timeBadHashes=' . $timeBadHashes . ',hashesPerBlock=' . $hashesPerBlock .',reward=' . $reward . PHP_EOL);
 
        // Block completed
        $totalHashes += $hashesPerBlock;
        $totalBlocks++;
        $hashesPerBlock = 0;
+       $foundHashes = array();
 
-       // Use nonceHash as next modula hash
-       $modulaHash = $nonceHash;
+       // Calculate new nonce
+       $nonce = calculateNonce($nonce);
 
        // Add reward to total
        $totalReward += $reward;
 
        // Calculate average block value
-       $blockValue = $totalReward / $totalBlocks * $totalHashes / (getBlockSize() * $totalBlocks);
+       $blockValue = $totalReward / $totalBlocks * $totalHashes / (BLOCK_SIZE * $totalBlocks);
 
        // Calculate reward per hour (= 3600 seconds)
        $rewardPerHour = $totalReward / abs(microtime(TRUE) - START_TIME) * 3600;