Commit 00de8225344e89572050dc882e5aeb22945f1f13

Con Kolivas 2011-06-26T15:28:33

Upper limit should be -hashes.

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/cpu-miner.c b/cpu-miner.c
index f3caf1f..c9d9acb 100644
--- a/cpu-miner.c
+++ b/cpu-miner.c
@@ -996,7 +996,7 @@ static void *gpuminer_thread(void *userdata)
 		timeval_subtract(&diff, &tv_end, &tv_workstart);
 
 		if (diff.tv_sec > opt_scantime  ||
-			work->blk.nonce > MAXTHREADS - hashes_done ||
+			work->blk.nonce > MAXTHREADS - hashes ||
 			work_restart[thr_id].restart)
 				need_work = true;
 	}