Bitcoin Forum
June 22, 2024, 09:57:06 PM *
News: Voting for pizza day contest
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: compile Cgminer (0.1btc)  (Read 440 times)
k5opt (OP)
Member
**
Offline Offline

Activity: 71
Merit: 10



View Profile
February 09, 2014, 08:03:11 AM
 #1

Hello
I need you compile Cgminer from

https://github.com/Eropi4/cgminer_keccak/


You have to change in file keccak.c

old function
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 that one:

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;
}


Idea is to remove double hashing.
Skype for connection vlaage
give 0.1 BTC

Pages: [1]
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!