Bitcoin Forum

Alternate cryptocurrencies => Mining (Altcoins) => Topic started by: k5opt on February 09, 2014, 10:15:28 AM



Title: Looking for a coder to compile cgminer with our small change (0.1 BTC)
Post by: k5opt on February 09, 2014, 10:15:28 AM

need to compile cgminer
from https://github.com/Eropi4/cgminer_keccak/
with following function change in file keccak.c

from:

Code:
void Hash3(uint256 *pResult, unsigned char const *pbegin, unsigned char const *pend)
{
 uint256 hash1;
 uint256 hash2;
 crypto_hash((unsigned char*)&hash1, pbegin, (pend - pbegin) * sizeof(pbegin[0]));
 crypto_hash((unsigned char*)&hash2, (unsigned char*)&hash1, sizeof(hash1));
 *pResult = hash2;
}

to:

Code:
void Hash3(uint256 *pResult, unsigned char const *pbegin, unsigned char const *pend)
{
 uint256 hash1;
 crypto_hash((unsigned char*)&hash1, pbegin, (pend - pbegin) * sizeof(pbegin[0]));
 *pResult = hash1;
}

in fact its just to remove 2nd hashing


PM me  or use Skype: vlaage


Title: Re: Looking for a coder to compile cgminer with our small change (0.1 BTC)
Post by: 00ph8al on February 09, 2014, 01:37:59 PM
Compiled for what OS?


Title: Re: Looking for a coder to compile cgminer with our small change (0.1 BTC)
Post by: deepv0id on February 09, 2014, 03:21:18 PM
Compiled for what OS?

win32 for sure, win64 optional