2d2112d3f76769c70cb72b788290d89eb9de440f
[novacoin.git] / src / scrypt_mine.h
1 #ifndef SCRYPT_MINE_H
2 #define SCRYPT_MINE_H
3
4 #include <stdint.h>
5 #include <stdlib.h>
6
7 #include "util.h"
8 #include "net.h"
9
10 uint256 scrypt_hash(const void* input, size_t inputlen);
11 uint256 scrypt_blockhash(const void* input);
12
13 #endif // SCRYPT_MINE_H