1
0
mirror of https://github.com/GOSTSec/sgminer synced 2025-01-10 23:08:07 +00:00

Merge pull request #147 from troky/nfactor

Added algorithm name to "coin" API command. Changed default algo name to "scrypt".
This commit is contained in:
Noel Maersk 2014-03-14 16:58:05 +02:00
commit 2b75a67cdf
3 changed files with 4 additions and 4 deletions

2
api.c
View File

@ -2856,7 +2856,7 @@ static void minecoin(struct io_data *io_data, __maybe_unused SOCKETTYPE c, __may
message(io_data, MSG_MINECOIN, 0, NULL, isjson); message(io_data, MSG_MINECOIN, 0, NULL, isjson);
io_open = io_add(io_data, isjson ? COMSTR JSON_MINECOIN : _MINECOIN COMSTR); io_open = io_add(io_data, isjson ? COMSTR JSON_MINECOIN : _MINECOIN COMSTR);
root = api_add_const(root, "Hash Method", SCRYPTSTR, false); root = api_add_string(root, "Hash Method", algorithm->name, false);
cg_rlock(&ch_lock); cg_rlock(&ch_lock);
root = api_add_timeval(root, "Current Block Time", &block_timeval, true); root = api_add_timeval(root, "Current Block Time", &block_timeval, true);

View File

@ -7853,7 +7853,7 @@ int main(int argc, char *argv[])
/* Default algorithm specified in algorithm.c ATM */ /* Default algorithm specified in algorithm.c ATM */
algorithm = (algorithm_t *)alloca(sizeof(algorithm_t)); algorithm = (algorithm_t *)alloca(sizeof(algorithm_t));
set_algorithm(algorithm, "default"); set_algorithm(algorithm, "scrypt");
devcursor = 8; devcursor = 8;
logstart = devcursor + 1; logstart = devcursor + 1;