Commit 85f400bf801482b5121802792f406a75ff7f4e76

Con Kolivas 2012-11-05T15:57:47

Correct last few components of GBT block generation courtesy of Luke-jr.

diff --git a/cgminer.c b/cgminer.c
index 02304fc..0025684 100644
--- a/cgminer.c
+++ b/cgminer.c
@@ -1428,7 +1428,7 @@ static bool __build_gbt_txns(struct pool *pool, json_t *res_val)
 		if (unlikely(!hex2bin(txn_bin, txn, txn_len / 2)))
 			quit(1, "Failed to hex2bin txn_bin");
 
-		gen_hash(txn_bin, pool->txn_hashes + (32 * i), txn_len);
+		gen_hash(txn_bin, pool->txn_hashes + (32 * i), txn_len / 2);
 		free(txn_bin);
 	}
 out:
@@ -1446,7 +1446,7 @@ static unsigned char *__gbt_merkleroot(struct pool *pool)
 
 	gen_hash(pool->gbt_coinbase, merkle_hash, pool->coinbase_len);
 
-	if (pool->gbt_txns > 1)
+	if (pool->gbt_txns)
 		memcpy(merkle_hash + 32, pool->txn_hashes, pool->gbt_txns * 32);
 
 	txns = pool->gbt_txns + 1;
@@ -1493,6 +1493,7 @@ static void gen_gbt_work(struct pool *pool, struct work *work)
 	mutex_unlock(&pool->gbt_lock);
 
 	memcpy(work->data + 4 + 32, merkleroot, 32);
+	flip32(work->data + 4 + 32, merkleroot);
 	free(merkleroot);
 	memset(work->data + 4 + 32 + 32 + 4 + 4, 0, 4); /* nonce */
 
diff --git a/miner.h b/miner.h
index 2a19ab8..ac4abf8 100644
--- a/miner.h
+++ b/miner.h
@@ -544,6 +544,16 @@ static inline void swab256(void *dest_p, const void *src_p)
 	dest[7] = swab32(src[0]);
 }
 
+static inline void flip32(void *dest_p, const void *src_p)
+{
+	uint32_t *dest = dest_p;
+	const uint32_t *src = src_p;
+	int i;
+
+	for (i = 0; i < 8; i++)
+		dest[i] = swab32(src[i]);
+}
+
 static inline void flip80(void *dest_p, const void *src_p)
 {
 	uint32_t *dest = dest_p;