Commit 5da3d58f6f35adb46b829d32f1a3ff8aed8cee0f

Con Kolivas 2013-10-31T16:49:24

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

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/cgminer.c b/cgminer.c
index 09c98bb..d5d7f3e 100644
--- a/cgminer.c
+++ b/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);