X-Git-Url: https://git.novaco.in/?a=blobdiff_plain;f=src%2Fscrypt.h;h=7d5aadc133cb7785a350f3c2fdf7e10e45c45784;hb=4a6759691d71bf2a7d2a0a9e4710f0887e66ab02;hp=b28d09043df3eaef183b3720b57028798bcea003;hpb=3eaf7fd0364abb129c282e80b9d095db8fbede52;p=novacoin.git diff --git a/src/scrypt.h b/src/scrypt.h index b28d090..7d5aadc 100644 --- a/src/scrypt.h +++ b/src/scrypt.h @@ -1,12 +1,12 @@ -#ifndef SCRYPT_MINE_H -#define SCRYPT_MINE_H +#ifndef SCRYPT_H +#define SCRYPT_H #include -#include +#include +#include "uint256.h" -#include "util.h" -#include "net.h" +#define SCRYPT_BUFFER_SIZE (131072 + 63) -uint256 scrypt_blockhash(const void* input); +uint256 scrypt_blockhash(const uint8_t* input); -#endif // SCRYPT_MINE_H +#endif // SCRYPT_H