aboutsummaryrefslogtreecommitdiff
path: root/src/daemon
diff options
context:
space:
mode:
authorbinaryFate <binaryfate01@gmail.com>2016-01-14 23:13:12 +0100
committerbinaryFate <binaryfate01@gmail.com>2016-01-14 23:13:12 +0100
commit0100e951d3a3580f2d498416b82f56e908dfa046 (patch)
tree90bffda637f1f330ad2a6a87f2f493f8b38671a5 /src/daemon
parentPrint msg when successfully updating out_peers (diff)
downloadmonero-0100e951d3a3580f2d498416b82f56e908dfa046.tar.xz
'max limit of...' is redundant wording, rephrase
Diffstat (limited to 'src/daemon')
-rw-r--r--src/daemon/command_server.cpp2
-rw-r--r--src/daemon/rpc_command_executor.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/daemon/command_server.cpp b/src/daemon/command_server.cpp
index 8f434c89a..f99b0844a 100644
--- a/src/daemon/command_server.cpp
+++ b/src/daemon/command_server.cpp
@@ -177,7 +177,7 @@ t_command_server::t_command_server(
m_command_lookup.set_handler(
"out_peers"
, std::bind(&t_command_parser_executor::out_peers, &m_parser, p::_1)
- , "Set max limit of out peers"
+ , "Set max number of out peers"
);
m_command_lookup.set_handler(
"start_save_graph"
diff --git a/src/daemon/rpc_command_executor.cpp b/src/daemon/rpc_command_executor.cpp
index 06f0f89bc..edf04bc82 100644
--- a/src/daemon/rpc_command_executor.cpp
+++ b/src/daemon/rpc_command_executor.cpp
@@ -964,7 +964,7 @@ bool t_rpc_command_executor::out_peers(uint64_t limit)
}
}
- std::cout << "Max limit of out peers set to " << limit << std::endl;
+ std::cout << "Max number of out peers set to " << limit << std::endl;
return true;
}