Browse Source

Share is above, not below target, when it doesn't meet it.

Con Kolivas 12 years ago
parent
commit
5da3d58f6f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      cgminer.c

+ 1 - 1
cgminer.c

@@ -6126,7 +6126,7 @@ void submit_tested_work(struct thr_info *thr, struct work *work)
 	update_work_stats(thr, work);
 
 	if (!fulltest(work->hash2, work->target)) {
-		applog(LOG_INFO, "Share below target");
+		applog(LOG_INFO, "Share above target");
 		return;
 	}
 	work_out = copy_work(work);