Commit face5e2721f69341458364061b460adb9f3aea7b

Con Kolivas 2014-03-14T09:49:13

Set max diff on cointerra devices to 32 which is still only 11 shares per second but allows for earlier confirmation of per core hashrates.

1
2
3
4
5
6
7
8
9
10
11
diff --git a/driver-cointerra.c b/driver-cointerra.c
index 863fba9..db5d90a 100644
--- a/driver-cointerra.c
+++ b/driver-cointerra.c
@@ -1197,5 +1197,5 @@ struct device_drv cointerra_drv = {
 	.get_statline_before = cta_statline_before,
 	.thread_shutdown = cta_shutdown,
 	.zero_stats = cta_zero_stats,
-	.max_diff = 256, // Set it below the actual limit to check nonces
+	.max_diff = 32, // Set it below the actual limit to check nonces
 };