Browse Source

modminer: Relax no-nonces downclocking condition to be more reasonable

Luke Dashjr 13 years ago
parent
commit
6a75581cce
1 changed files with 1 additions and 1 deletions
  1. 1 1
      driver-modminer.c

+ 1 - 1
driver-modminer.c

@@ -439,7 +439,7 @@ modminer_process_results(struct thr_info*thr)
 			}
 		}
 		else
-		if (++state->no_nonce_counter > 18000) {
+		if (++state->no_nonce_counter > 0x20000) {
 			state->no_nonce_counter = 0;
 			modminer_reduce_clock(thr, true);
 		}