diff options
author | psychocrypt <psychocrypt@users.noreply.github.com> | 2017-12-06 22:24:33 +0100 |
---|---|---|
committer | psychocrypt <psychocrypt@users.noreply.github.com> | 2017-12-06 23:30:43 +0100 |
commit | 961de0f4855bda890a48090c17ffd213bdab4ef0 (patch) | |
tree | da5bd19d54c286a56b52dc931698dc8925aac177 /xmrstak/cli/cli-miner.cpp | |
parent | 47a4d031bcc3159a298afaae6797cd19240ad0a1 (diff) | |
download | xmr-stak-961de0f4855bda890a48090c17ffd213bdab4ef0.zip xmr-stak-961de0f4855bda890a48090c17ffd213bdab4ef0.tar.gz |
fix broken pool option overwrite via CLI
fix #340
With #90 the option to overwrite the pool settings via CLI options is broken.
This pull request will allow to overwrite the options of the pool with the highest weighting.
Diffstat (limited to 'xmrstak/cli/cli-miner.cpp')
-rw-r--r-- | xmrstak/cli/cli-miner.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmrstak/cli/cli-miner.cpp b/xmrstak/cli/cli-miner.cpp index e32733b..06acaea 100644 --- a/xmrstak/cli/cli-miner.cpp +++ b/xmrstak/cli/cli-miner.cpp @@ -82,7 +82,7 @@ void help() cout<<" --nvidia FILE NVIDIA backend miner config file"<<endl; #endif cout<<" "<<endl; - cout<<"The Following options temporary overwrites the config file settings:"<<endl; + cout<<"The Following options temporary overwrites the config entries of \nthe pool with the highest weight:"<<endl; cout<<" -o, --url URL pool url and port, e.g. pool.usxmrpool.com:3333"<<endl; cout<<" -u, --user USERNAME pool user name or wallet address"<<endl; cout<<" -p, --pass PASSWD pool password, in the most cases x or empty \"\""<<endl; |