sha*.c: remove debug statement, which is redundant to hashmeter output

This commit is contained in:
Jeff Garzik 2011-02-04 02:55:55 -05:00 committed by Jeff Garzik
parent e8ee4cb002
commit 98de751416
3 changed files with 0 additions and 6 deletions

View file

@ -116,8 +116,6 @@ bool scanhash_cryptopp(const unsigned char *midstate, unsigned char *data,
}
if (n >= max_nonce) {
if (opt_debug)
fprintf(stderr, "DBG: end of nonce range\n");
*hashes_done = stat_ctr;
return false;
}

View file

@ -262,8 +262,6 @@ bool scanhash_c(const unsigned char *midstate, unsigned char *data,
}
if (n >= max_nonce) {
if (opt_debug)
fprintf(stderr, "DBG: end of nonce range\n");
*hashes_done = stat_ctr;
return false;
}

View file

@ -71,8 +71,6 @@ bool scanhash_via(unsigned char *data_inout,
}
if (n >= max_nonce) {
if (opt_debug)
fprintf(stderr, "DBG: end of nonce range\n");
*hashes_done = stat_ctr;
return false;
}