Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
Also, remove a few superfluous printouts.
|
|
|
|
|
|
In miner.h, this fixes an alloca-definition-related warning.
For the other files, this is simply future-proofing/precaution.
|
|
Also, improve portability of alloca.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
This reverts commit da1fd227bf2cc56c6f9a7ea42bd2c8b05f781f06.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Suggested by prcarter.
|
|
Pointed out by several people, including Raulo.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Previously, we would stop the scan if the high 32 bits of the hash were zero,
as a quick shortcut for testing the full hash. If this quick test succeeded,
we would pass the work to the server for full validation.
Change this logic to perform full validation inside minerd, so that work may
be resumed more quickly if hash > target.
|
|
|
|
|
|
|
|
|
|
Should be an equivalent transformation, with no behavior changes.
|