bitmessage-js/src/pow.h

11 lines
201 B
C
Raw Normal View History

2015-01-09 21:36:42 +00:00
#ifndef BITMESSAGE_POW_H
#define BITMESSAGE_POW_H
2015-01-09 22:09:01 +00:00
int pow(size_t pool_size,
uint64_t target,
2015-01-09 21:36:42 +00:00
const uint8_t* initial_hash,
2015-01-09 22:09:01 +00:00
uint64_t max_nonce,
uint64_t* nonce);
2015-01-09 21:36:42 +00:00
#endif