1
0
mirror of https://github.com/GOSTSec/sgminer synced 2025-01-11 07:17:58 +00:00

core: Remove two unused functions.

They were previously necessary to switch between SHA256d and Scrypt.
This commit is contained in:
Noel Maersk 2014-01-12 17:46:33 +02:00
parent 211da58a73
commit bb5065b601

View File

@ -3464,25 +3464,6 @@ static uint64_t share_diff(const struct work *work)
return ret;
}
// FIXME: not used?
static void regen_hash(struct work *work)
{
uint32_t *data32 = (uint32_t *)(work->data);
unsigned char swap[80];
uint32_t *swap32 = (uint32_t *)swap;
unsigned char hash1[32];
flip80(swap32, data32);
sha256(swap, 80, hash1);
sha256(hash1, 32, (unsigned char *)(work->hash));
}
// FIXME: just call scrypt_regenhash where needed
static void rebuild_hash(struct work *work)
{
scrypt_regenhash(work);
}
static bool cnx_needed(struct pool *pool);
/* Find the pool that currently has the highest priority */