aboutsummaryrefslogtreecommitdiff
path: root/src/daemon/command_server.cpp
diff options
context:
space:
mode:
authorRiccardo Spagni <ric@spagni.net>2016-09-01 11:29:57 +0200
committerRiccardo Spagni <ric@spagni.net>2016-09-01 11:29:57 +0200
commitbadd77068b11fe7b4b27f466e8f565aefa98218c (patch)
tree15afe1e65f3680623d7145f1494b3598ed776280 /src/daemon/command_server.cpp
parentMerge pull request #1018 (diff)
parentFix incorrect help usage for the threads option to start_mining (diff)
downloadmonero-badd77068b11fe7b4b27f466e8f565aefa98218c.tar.xz
Merge pull request #1021
1d5ba65 Fix incorrect help usage for the threads option to start_mining (Quanah Gibson-Mount)
Diffstat (limited to 'src/daemon/command_server.cpp')
-rw-r--r--src/daemon/command_server.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/daemon/command_server.cpp b/src/daemon/command_server.cpp
index aabc2f09a..ce8ac44fc 100644
--- a/src/daemon/command_server.cpp
+++ b/src/daemon/command_server.cpp
@@ -92,7 +92,7 @@ t_command_server::t_command_server(
m_command_lookup.set_handler(
"start_mining"
, std::bind(&t_command_parser_executor::start_mining, &m_parser, p::_1)
- , "Start mining for specified address, start_mining <addr> [threads=1]"
+ , "Start mining for specified address, start_mining <addr> [<threads>], default 1 thread"
);
m_command_lookup.set_handler(
"stop_mining"