diff options
author | binaryFate <binaryfate@users.noreply.github.com> | 2017-11-09 08:43:19 +0100 |
---|---|---|
committer | binaryFate <binaryfate@users.noreply.github.com> | 2017-11-10 09:42:40 +0100 |
commit | 416a7933260618e2664c3cf8f32f0a68c51ee263 (patch) | |
tree | 680783b9069e2e3fd7479bbb4c7ee4310dded121 | |
parent | Merge pull request #2764 (diff) | |
download | monero-416a7933260618e2664c3cf8f32f0a68c51ee263.tar.xz |
Print msg upon success for commands that were silent
-rw-r--r-- | src/daemon/rpc_command_executor.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/daemon/rpc_command_executor.cpp b/src/daemon/rpc_command_executor.cpp index 2c11dcb31..bb516076d 100644 --- a/src/daemon/rpc_command_executor.cpp +++ b/src/daemon/rpc_command_executor.cpp @@ -1302,6 +1302,7 @@ bool t_rpc_command_executor::start_save_graph() } } + tools::success_msg_writer() << "Saving graph is now on"; return true; } @@ -1327,6 +1328,7 @@ bool t_rpc_command_executor::stop_save_graph() return true; } } + tools::success_msg_writer() << "Saving graph is now off"; return true; } @@ -1493,6 +1495,7 @@ bool t_rpc_command_executor::flush_txpool(const std::string &txid) } } + tools::success_msg_writer() << "Pool successfully flushed"; return true; } @@ -1795,6 +1798,7 @@ bool t_rpc_command_executor::relay_tx(const std::string &txid) } } + tools::success_msg_writer() << "Transaction successfully relayed"; return true; } |