Feel free to build and benchmark Decred's
cgminer fork. Could use some data on hardware performance. Testnet and miner binaries will be out tomorrow morning!
I reviewed the changes. Can you/dev explain why was this changed?
from
uint32_t tmp_hash7, Htarg = le32toh(((const uint32_t *)ptarget)[7]);
to
uint32_t tmp_hash7, Htarg = le32toh(((const uint32_t *)ptarget)[29]);
I read the
spec and hash still 32 bytes (=8 integer) long, so the target last integer index is still 7.