Browse Source

~

pull/31/head
Warlock-Dalbaeb 7 years ago
parent
commit
8d47f128eb
  1. 13
      vanitygen.cpp

13
vanitygen.cpp

@ -74,7 +74,7 @@ return true;
} }
static size_t ByteStreamToBase32 (const uint8_t * inBuf, size_t len, char * outBuf, size_t outLen) static inline size_t ByteStreamToBase32 (const uint8_t * inBuf, size_t len, char * outBuf, size_t outLen)
{ {
size_t ret = 0, pos = 1; size_t ret = 0, pos = 1;
int bits = 8, tmp = inBuf[0]; int bits = 8, tmp = inBuf[0];
@ -169,28 +169,29 @@ while(throughput-- and !found){
// apply last block // apply last block
TransformBlock (state1, lastW); TransformBlock (state1, lastW);
// get final hash // get final hash
for (int j = 0; j < 8; j++) for (int j = 8; j--;)
hash[j] = htobe32 (state1[j]); hash[j] = htobe32 (state1[j]);
/* /*
*/ */
ByteStreamToBase32 ((uint8_t*)hash, 32, addr, len); ByteStreamToBase32 ((uint8_t*)hash, 32, addr, len);
// std::cout << addr << std::endl;
if( !NotThat(addr,prefix) ){ if( !NotThat(addr,prefix) ){
ByteStreamToBase32 ((uint8_t*)hash, 32, addr, 52); ByteStreamToBase32 ((uint8_t*)hash, 32, addr, 52);
std::cout << "Address found " << addr << " in " << id_thread << std::endl; std::cout << "Address found " << addr << " in " << id_thread << std::endl;
found=true; found=true;
FoundNonce=*nonce; FoundNonce=*nonce;
//free(hash); free(hash);
//free(b); free(b);
return true; return true;
} }
(*nonce)++; (*nonce)++;
hashescounter++; hashescounter++;
if (found){ if (found){
//free(hash); free(hash);
//free(b); free(b);
break; break;
} }

Loading…
Cancel
Save