Browse Source

Bugfix: Not using cgminer GBT implementation

Luke Dashjr 13 years ago
parent
commit
332c5f5d4d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      miner.c

+ 1 - 1
miner.c

@@ -5464,7 +5464,7 @@ static bool cnx_needed(struct pool *pool)
 	cp = current_pool();
 	if (cp == pool)
 		return true;
-	if (!cp->has_gbt && !cp->has_stratum && (!opt_fail_only || !cp->hdr_path))
+	if (!cp->has_stratum && (!opt_fail_only || !cp->hdr_path))
 		return true;
 	return false;
 }