aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2011-02-04Fix max-nonce auto-adjustment logic to actually workJeff Garzik
2011-02-04Move verbose proof-of-work/target comparison display into -D (debug)Jeff Garzik
2011-02-04sha*.c: remove debug statement, which is redundant to hashmeter outputJeff Garzik
2011-02-03Add --retry-pause, to set length of pause time between failure retriesJeff Garzik
2011-02-03Continue scanhash, even if high 32 bits are zero.Jeff Garzik
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.
2011-02-02Display proof-of-work hash when one is discoveredJeff Garzik
2011-01-29Remove "PROOF OF WORK FOUND?" debug output; redundant.Jeff Garzik
2011-01-29Release version 0.6.v0.6Jeff Garzik
2011-01-29Dynamically adjust time spent hashing current work unit, to meet targetJeff Garzik
2011-01-29Pass max-nonce as arg to each sha256 algo.Jeff Garzik
Should be an equivalent transformation, with no behavior changes.
2011-01-29Code movement: move second hash time sampling to main miner loopJeff Garzik
2011-01-29Replace ___constant_swab32() with gcc's __builtin_bswap32Jeff Garzik
http://www.bitcoin.org/smf/index.php?topic=1925.msg34827#msg34827 Credit: lfm
2011-01-29sha256_4way minor optimizationsJeff Garzik
http://www.bitcoin.org/smf/index.php?topic=820.msg40022#msg40022 Credit: BeeCee1
2011-01-29Fix non-working short options -q and -r N, by listing them in optstring.Jeff Garzik
2011-01-20README: mention CFLAGS on *nix buildsJeff Garzik
2010-12-28Release version 0.5.v0.5Jeff Garzik
2010-12-28Rather than sleep-loop, main thread waits for all threads to exit.Jeff Garzik
2010-12-28Improve CURL HTTP request error diagnostics.Jeff Garzik
2010-12-28Improve JSON-RPC result/error checking, and improve error diagnostic output.Jeff Garzik
2010-12-27Add --quiet option, to disable hashmeter output.Jeff Garzik
2010-12-27Release version 0.3.3.v0.3.3Jeff Garzik
2010-12-27sha256_cryptopp asm: byteswap input wordsJeff Garzik
2010-12-26Move 32-bit swap code into miner.h, for sharing.Jeff Garzik
2010-12-23Release version 0.3.2.v0.3.2Jeff Garzik
2010-12-23sha256_via: ensure that found nonce is copied back into output data bufferJeff Garzik
Also, some minor cleanups, removing unused args.
2010-12-19Release version 0.3.1.v0.3.1Jeff Garzik
2010-12-19sha256_via: ensure proper data area is fully checksummedJeff Garzik
2010-12-18Handle temporary JSON failures (due to server reboot, etc.)Jeff Garzik
2010-12-18README: update win32 build insnsJeff Garzik
2010-12-18Release version 0.3.v0.3Jeff Garzik
2010-12-18sha256_4way: work around gcc 4.5.x bug by always inlining ROTR and SHRJeff Garzik
2010-12-06Display version on minerd --help usage output.Jeff Garzik
2010-12-06sha256_cryptopp: Add crypto++ 32-bit assembly implementationJeff Garzik
2010-12-06Release version 0.2.2.v0.2.2Jeff Garzik
Remove 'experimental' marker from VIA padlock implementation.
2010-12-06sha256_4way: do not include unnecessary headers, when !4wayJeff Garzik
Reported by lfm
2010-12-06sha256_via: align tmp_hash1 to 128, to avoid stack clobberJeff Garzik
Reported by lfm
2010-12-05Avoid null deref in command line arg processing.Jeff Garzik
Reported by lfm.
2010-11-29Release version 0.2.1.v0.2.1Jeff Garzik
2010-11-29submit_work: increase string buffer, to avoid overflowJeff Garzik
2010-11-28Add Crypto++ sha256 implementation (C only, ASM elided for now)Jeff Garzik
2010-11-27Move sha256_generic into its own .o build output. Const-ify midstate param.Jeff Garzik
2010-11-27Release version 0.2.v0.2Jeff Garzik
2010-11-27Clean up multi-algorithm selection and displayJeff Garzik
2010-11-27sha256_4way: patch proper nonce into data blockJeff Garzik
2010-11-27sha256_via: add further comments on byte-swapping workJeff Garzik
2010-11-27miner.h: include sys/time.h for struct timeval definitionJeff Garzik
2010-11-27Add experimental (read: probably broken) VIA padlock support.Jeff Garzik
2010-11-27Improve and modularize compile-time CPU detection.Jeff Garzik
Ideally, we should move this to autoconf.
2010-11-27s/__SSE__/__SSE2__/Jeff Garzik
2010-11-26Windows build tweaks.Jeff Garzik