mirror of
https://github.com/GOSTSec/sgminer
synced 2025-01-22 12:34:27 +00:00
17 lines
268 B
C
17 lines
268 B
C
|
#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:
|
||
|
}
|