From 80e38895b3d14e279ce80e84b3bdd8c76ebde0c5 Mon Sep 17 00:00:00 2001 From: binaryFate Date: Thu, 14 Jan 2016 23:10:07 +0100 Subject: [PATCH] Print msg when successfully updating out_peers --- src/daemon/rpc_command_executor.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/daemon/rpc_command_executor.cpp b/src/daemon/rpc_command_executor.cpp index fc06c858..06f0f89b 100644 --- a/src/daemon/rpc_command_executor.cpp +++ b/src/daemon/rpc_command_executor.cpp @@ -964,6 +964,8 @@ bool t_rpc_command_executor::out_peers(uint64_t limit) } } + std::cout << "Max limit of out peers set to " << limit << std::endl; + return true; }