diff options
author | psychocrypt <psychocrypt@users.noreply.github.com> | 2017-10-26 20:58:27 +0200 |
---|---|---|
committer | psychocrypt <psychocrypt@users.noreply.github.com> | 2017-10-27 20:13:19 +0200 |
commit | 12802f12e30f57c2a9eefca2c1a5955275c95127 (patch) | |
tree | a10bced239ecd012ceeed593571a3fb8bccee9cb /xmrstak/cli | |
parent | 41451d91e8e50f2b6c4b07630987dbc5a58aecb9 (diff) | |
download | xmr-stak-12802f12e30f57c2a9eefca2c1a5955275c95127.zip xmr-stak-12802f12e30f57c2a9eefca2c1a5955275c95127.tar.gz |
rename `xmr` to `monero`
- rename all `xmr` to `monero`
- be insensitive while check for set currency
- add function to compate two strings insensitive
Diffstat (limited to 'xmrstak/cli')
-rw-r--r-- | xmrstak/cli/cli-miner.cpp | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/xmrstak/cli/cli-miner.cpp b/xmrstak/cli/cli-miner.cpp index 054e6db..c15ca56 100644 --- a/xmrstak/cli/cli-miner.cpp +++ b/xmrstak/cli/cli-miner.cpp @@ -31,6 +31,7 @@ #include "xmrstak/params.hpp" #include "xmrstak/misc/configEditor.hpp" #include "xmrstak/version.hpp" +#include "xmrstak/misc/utility.hpp" #ifndef CONF_NO_HTTPD # include "xmrstak/http/httpd.hpp" @@ -64,8 +65,8 @@ void help() cout<<" "<<endl; cout<<" -h, --help show this help"<<endl; cout<<" -c, --config FILE common miner configuration file"<<endl; -#if (!defined(CONF_NO_AEON)) && (!defined(CONF_NO_XMR)) - cout<<" --currency NAME currency to mine: xmr or aeon"<<endl; +#if (!defined(CONF_NO_AEON)) && (!defined(CONF_NO_MONERO)) + cout<<" --currency NAME currency to mine: monero or aeon"<<endl; #endif #ifndef CONF_NO_CPU cout<<" --noCPU disable the CPU miner backend"<<endl; @@ -250,13 +251,13 @@ int main(int argc, char *argv[]) { std::string tmp; #if defined(CONF_NO_AEON) - tmp = "xmr"; -#elif defined(CONF_NO_XMR) + tmp = "monero"; +#elif defined(CONF_NO_MONERO) tmp = "aeon"; #endif - while(tmp.compare("xmr") != 0 && tmp.compare("aeon") != 0) + while(xmrstak::strcmp_i(tmp, "monero") && xmrstak::strcmp_i(tmp, "aeon")) { - std::cout<<"- currency: 'xmr' or 'aeon'"<<std::endl; + std::cout<<"- currency: 'monero' or 'aeon'"<<std::endl; std::cin >> tmp; } currency = tmp; @@ -264,7 +265,7 @@ int main(int argc, char *argv[]) auto& pool = params::inst().poolURL; if(pool.empty()) { - if(currency.compare("xmr") != 0) + if(xmrstak::strcmp_i(currency, "monero")) std::cout<<"- pool address: e.g. pool.usxmrpool.com:3333"<<std::endl; else std::cout<<"- pool address: e.g. mine.aeon-pool.com:5555"<<std::endl; @@ -333,8 +334,8 @@ int main(int argc, char *argv[]) printer::inst()->print_str("'r' - results\n"); printer::inst()->print_str("'c' - connection\n"); printer::inst()->print_str("-------------------------------------------------------------------\n"); - if(::jconf::inst()->IsCurrencyXMR()) - printer::inst()->print_msg(L0,"Start mining: XMR"); + if(::jconf::inst()->IsCurrencyMonero()) + printer::inst()->print_msg(L0,"Start mining: MONERO"); else printer::inst()->print_msg(L0,"Start mining: AEON"); |