Commit 8edba014477d26bfc6aefbe69af29c5fc1dcc2d2

Con Kolivas 2013-11-13T21:54:21

We can't connect to a GBT pool at all with fix protocol enabled.

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/cgminer.c b/cgminer.c
index b2f1fb1..eba7854 100644
--- a/cgminer.c
+++ b/cgminer.c
@@ -5503,7 +5503,7 @@ retry_stratum:
 	}
 
 	/* Probe for GBT support on first pass */
-	if (!pool->probed && !opt_fix_protocol) {
+	if (!pool->probed) {
 		applog(LOG_DEBUG, "Probing for GBT support");
 		val = json_rpc_call(curl, pool->rpc_url, pool->rpc_userpass,
 				    gbt_req, true, false, &rolltime, pool, false);