Browse Source

Merge commit 'ac0c813' into stratum

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

+ 1 - 1
miner.c

@@ -5431,7 +5431,7 @@ static void gen_stratum_work(struct pool *pool, struct work *work)
 		int byte = j / 8;
 		int byte = j / 8;
 		int bit = j % 8;
 		int bit = j % 8;
 
 
-		data8[byte] &= ~(8 >> bit);
+		data8[byte] &= ~(128 >> bit);
 	}
 	}
 	swab256(target, rtarget);
 	swab256(target, rtarget);
 	if (opt_debug) {
 	if (opt_debug) {