1
0
mirror of https://github.com/GOSTSec/sgminer synced 2025-01-09 14:28:12 +00:00
sgminer/algorithm/blakecoin.h

11 lines
371 B
C
Raw Normal View History

2016-02-06 11:50:16 +00:00
#ifndef BLAKECOIN_H
#define BLAKECOIN_H
#include "miner.h"
extern int blakecoin_test(unsigned char *pdata, const unsigned char *ptarget, uint32_t nonce);
2016-03-21 17:15:54 +00:00
extern void blakecoin_prepare_work(dev_blk_ctx *blk, uint32_t *state, uint32_t *data);
extern void blakecoin_midstate(struct work *work);
2016-02-06 11:50:16 +00:00
extern void blakecoin_regenhash(struct work *work);
#endif /* BLAKECOIN_H */