From 8203fea539afc452614aee21adf112594eeb264f Mon Sep 17 00:00:00 2001 From: Noel Maersk Date: Thu, 27 Mar 2014 17:58:16 +0200 Subject: [PATCH] config: move `--coin` in config table (alphabetically). --- sgminer.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sgminer.c b/sgminer.c index f32f0611..00d9a1e6 100644 --- a/sgminer.c +++ b/sgminer.c @@ -1144,6 +1144,9 @@ static struct opt_table opt_config_table[] = { OPT_WITHOUT_ARG("--benchmark", opt_set_bool, &opt_benchmark, "Run sgminer in benchmark mode - produces no shares"), + OPT_WITH_ARG("--coin", + set_pool_coin, NULL, NULL, + "Pool coin"), #ifdef HAVE_CURSES OPT_WITHOUT_ARG("--compact", opt_set_bool, &opt_compact, @@ -1409,9 +1412,6 @@ static struct opt_table opt_config_table[] = { OPT_WITH_ARG("--pool-priority", set_pool_priority, NULL, NULL, "Pool priority"), - OPT_WITH_ARG("--coin", - set_pool_coin, NULL, NULL, - "Pool coin"), OPT_WITHOUT_ARG("--worktime", opt_set_bool, &opt_worktime, "Display extra work time debug information"),