Rename scrypt_mine.(cpp|h) to scrypt.(cpp|h)
[novacoin.git] / src / scrypt.h
diff --git a/src/scrypt.h b/src/scrypt.h
new file mode 100644 (file)
index 0000000..2d2112d
--- /dev/null
@@ -0,0 +1,13 @@
+#ifndef SCRYPT_MINE_H
+#define SCRYPT_MINE_H
+
+#include <stdint.h>
+#include <stdlib.h>
+
+#include "util.h"
+#include "net.h"
+
+uint256 scrypt_hash(const void* input, size_t inputlen);
+uint256 scrypt_blockhash(const void* input);
+
+#endif // SCRYPT_MINE_H