mirror of https://github.com/GOSTSec/sgminer
orignal
8 years ago
5 changed files with 53 additions and 2 deletions
@ -0,0 +1,16 @@
@@ -0,0 +1,16 @@
|
||||
#include "config.h" |
||||
#include "miner.h" |
||||
|
||||
#include <stdlib.h> |
||||
#include <stdint.h> |
||||
#include <string.h> |
||||
|
||||
int gostcoin_test(unsigned char *pdata, const unsigned char *ptarget, uint32_t nonce) |
||||
{ |
||||
return 0; // TODO
|
||||
} |
||||
|
||||
void gostcoin_regenhash(struct work *work) |
||||
{ |
||||
// TODO:
|
||||
} |
@ -0,0 +1,10 @@
@@ -0,0 +1,10 @@
|
||||
#ifndef GOSTCOIN_H |
||||
#define GOSTCOIN_H |
||||
|
||||
#include "miner.h" |
||||
|
||||
extern int gostcoin_test(unsigned char *pdata, const unsigned char *ptarget, |
||||
uint32_t nonce); |
||||
extern void gostcoin_regenhash(struct work *work); |
||||
|
||||
#endif /* SIBCOIN_H */ |
Loading…
Reference in new issue