1
0
mirror of https://github.com/GOSTSec/sgminer synced 2025-02-05 11:34:16 +00:00

Merge pull request #50 from kanoi/kano

Hash is 32 bytes (64 nibbles)
This commit is contained in:
Con Kolivas 2011-09-23 20:14:19 -07:00
commit 7c26948e45

4
main.c
View File

@ -2003,7 +2003,7 @@ bool regeneratehash(const struct work *work)
uint32_t *data32 = (uint32_t *)(work->data);
unsigned char swap[128];
uint32_t *swap32 = (uint32_t *)swap;
unsigned char hash1[64];
unsigned char hash1[32];
uint32_t *hash32 = (uint32_t *)(work->hash);
uint32_t difficulty = 0;
uint32_t diffbytes = 0;
@ -2016,7 +2016,7 @@ bool regeneratehash(const struct work *work)
swap32[i] = swab32(data32[i]);
sha2(swap, 80, hash1, false);
sha2(hash1, 64, (unsigned char *)(work->hash), false);
sha2(hash1, 32, (unsigned char *)(work->hash), false);
difficulty = swab32(*((uint32_t *)(work->data + 72)));