1
0
mirror of https://github.com/GOSTSec/sgminer synced 2025-01-24 21:44:38 +00:00
sgminer/algorithm/blakecoin.h

11 lines
371 B
C
Raw Normal View History

2016-02-06 12:50:16 +01: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 18:15:54 +01: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 12:50:16 +01:00
extern void blakecoin_regenhash(struct work *work);
#endif /* BLAKECOIN_H */