Browse Source

Revert "Don't reset result counter to zero if it's negative in avalon on just one successful share."

This reverts commit ce0a9cd3a4620e18e391be5ce88c92a606b1fddf.

This wasn't the problem.
Con Kolivas 12 years ago
parent
commit
b2b594b80e
1 changed files with 2 additions and 0 deletions
  1. 2 0
      driver-avalon.c

+ 2 - 0
driver-avalon.c

@@ -621,6 +621,8 @@ static void avalon_parse_results(struct cgpu_info *avalon, struct avalon_info *i
 
 			if (avalon_decode_nonce(thr, avalon, info, ar, work)) {
 				mutex_lock(&info->lock);
+				if (avalon->results < 0)
+					avalon->results = 0;
 				if (!(++avalon->results % info->miner_count)) {
 					gettemp = true;
 					avalon->results = 0;