|
|
|
@ -98,7 +98,7 @@ int opt_queue = 1;
@@ -98,7 +98,7 @@ int opt_queue = 1;
|
|
|
|
|
int opt_scantime = 7; |
|
|
|
|
int opt_expiry = 28; |
|
|
|
|
|
|
|
|
|
algorithm_t *opt_algorithm; |
|
|
|
|
algorithm_t opt_algorithm; |
|
|
|
|
|
|
|
|
|
unsigned long long global_hashrate; |
|
|
|
|
unsigned long global_quota_gcd = 1; |
|
|
|
@ -528,7 +528,7 @@ struct pool *add_pool(void)
@@ -528,7 +528,7 @@ struct pool *add_pool(void)
|
|
|
|
|
pool->name = strdup(buf); |
|
|
|
|
|
|
|
|
|
/* Algorithm */ |
|
|
|
|
pool->algorithm = *opt_algorithm; |
|
|
|
|
pool->algorithm = opt_algorithm; |
|
|
|
|
|
|
|
|
|
pools = (struct pool **)realloc(pools, sizeof(struct pool *) * (total_pools + 2)); |
|
|
|
|
pools[total_pools++] = pool; |
|
|
|
@ -1117,8 +1117,8 @@ static void load_temp_cutoffs()
@@ -1117,8 +1117,8 @@ static void load_temp_cutoffs()
|
|
|
|
|
static char *set_algo(const char *arg) |
|
|
|
|
{ |
|
|
|
|
if ((json_array_index < 0) || (total_pools == 0)) { |
|
|
|
|
set_algorithm(opt_algorithm, arg); |
|
|
|
|
applog(LOG_INFO, "Set default algorithm to %s", opt_algorithm->name); |
|
|
|
|
set_algorithm(&opt_algorithm, arg); |
|
|
|
|
applog(LOG_INFO, "Set default algorithm to %s", opt_algorithm.name); |
|
|
|
|
} else { |
|
|
|
|
set_pool_algorithm(arg); |
|
|
|
|
} |
|
|
|
@ -1129,9 +1129,9 @@ static char *set_algo(const char *arg)
@@ -1129,9 +1129,9 @@ static char *set_algo(const char *arg)
|
|
|
|
|
static char *set_nfactor(const char *arg) |
|
|
|
|
{ |
|
|
|
|
if ((json_array_index < 0) || (total_pools == 0)) { |
|
|
|
|
set_algorithm_nfactor(opt_algorithm, (const uint8_t) atoi(arg)); |
|
|
|
|
set_algorithm_nfactor(&opt_algorithm, (const uint8_t) atoi(arg)); |
|
|
|
|
applog(LOG_INFO, "Set algorithm N-factor to %d (N to %d)", |
|
|
|
|
opt_algorithm->nfactor, opt_algorithm->n); |
|
|
|
|
opt_algorithm.nfactor, opt_algorithm.n); |
|
|
|
|
} else { |
|
|
|
|
set_pool_nfactor(arg); |
|
|
|
|
} |
|
|
|
@ -4414,7 +4414,7 @@ void write_config(FILE *fcfg)
@@ -4414,7 +4414,7 @@ void write_config(FILE *fcfg)
|
|
|
|
|
if (strcmp(pool->description, "") != 0) { |
|
|
|
|
fprintf(fcfg, ",\n\t\t\"description\" : \"%s\"", json_escape(pool->description)); |
|
|
|
|
} |
|
|
|
|
if (!cmp_algorithm(&pool->algorithm, opt_algorithm)) { |
|
|
|
|
if (!cmp_algorithm(&pool->algorithm, &opt_algorithm)) { |
|
|
|
|
fprintf(fcfg, ",\n\t\t\"algorithm\" : \"%s\"", json_escape(pool->algorithm.name)); |
|
|
|
|
} |
|
|
|
|
if (pool->prio != i) { |
|
|
|
@ -4591,8 +4591,8 @@ void write_config(FILE *fcfg)
@@ -4591,8 +4591,8 @@ void write_config(FILE *fcfg)
|
|
|
|
|
} |
|
|
|
|
if (opt_removedisabled) |
|
|
|
|
fprintf(fcfg, ",\n\"remove-disabled\" : true"); |
|
|
|
|
if (strcmp(opt_algorithm->name, "scrypt") != 0) |
|
|
|
|
fprintf(fcfg, ",\n\"algorithm\" : \"%s\"", json_escape(opt_algorithm->name)); |
|
|
|
|
if (strcmp(opt_algorithm.name, "scrypt") != 0) |
|
|
|
|
fprintf(fcfg, ",\n\"algorithm\" : \"%s\"", json_escape(opt_algorithm.name)); |
|
|
|
|
if (opt_api_allow) |
|
|
|
|
fprintf(fcfg, ",\n\"api-allow\" : \"%s\"", json_escape(opt_api_allow)); |
|
|
|
|
if (strcmp(opt_api_mcast_addr, API_MCAST_ADDR) != 0) |
|
|
|
@ -7409,7 +7409,7 @@ static bool input_pool(bool live)
@@ -7409,7 +7409,7 @@ static bool input_pool(bool live)
|
|
|
|
|
desc = curses_input("Description (optional)"); |
|
|
|
|
if (strcmp(desc, "-1") == 0) strcpy(desc, ""); |
|
|
|
|
algo = curses_input("Algorithm (optional)"); |
|
|
|
|
if (strcmp(algo, "-1") == 0) strcpy(algo, opt_algorithm->name); |
|
|
|
|
if (strcmp(algo, "-1") == 0) strcpy(algo, opt_algorithm.name); |
|
|
|
|
|
|
|
|
|
pool = add_pool(); |
|
|
|
|
|
|
|
|
@ -7919,8 +7919,7 @@ int main(int argc, char *argv[])
@@ -7919,8 +7919,7 @@ int main(int argc, char *argv[])
|
|
|
|
|
#endif |
|
|
|
|
|
|
|
|
|
/* Default algorithm specified in algorithm.c ATM */ |
|
|
|
|
opt_algorithm = (algorithm_t *)alloca(sizeof(algorithm_t)); |
|
|
|
|
set_algorithm(opt_algorithm, "scrypt"); |
|
|
|
|
set_algorithm(&opt_algorithm, "scrypt"); |
|
|
|
|
|
|
|
|
|
devcursor = 8; |
|
|
|
|
logstart = devcursor + 1; |
|
|
|
|