diff options
| author | Riccardo Spagni <ric@spagni.net> | 2017-11-20 12:09:01 +0900 |
|---|---|---|
| committer | Riccardo Spagni <ric@spagni.net> | 2017-11-20 12:09:02 +0900 |
| commit | 49ce59462adba8b6a305f94cefe1f9d871d60526 (patch) | |
| tree | 72624a3180b0aa376e514644246ed55dbbc9c10c /src/daemon | |
| parent | 8d9e4920fc1d1722715559781434f4826018b722 (diff) | |
| parent | 416a7933260618e2664c3cf8f32f0a68c51ee263 (diff) | |
| download | monzero-core-49ce59462adba8b6a305f94cefe1f9d871d60526.tar.gz monzero-core-49ce59462adba8b6a305f94cefe1f9d871d60526.tar.xz monzero-core-49ce59462adba8b6a305f94cefe1f9d871d60526.zip | |
Merge pull request #2783
416a7933 Print msg upon success for commands that were silent (binaryFate)
Diffstat (limited to 'src/daemon')
| -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 230b9f090..d7ee28baa 100644 --- a/src/daemon/rpc_command_executor.cpp +++ b/src/daemon/rpc_command_executor.cpp @@ -1304,6 +1304,7 @@ bool t_rpc_command_executor::start_save_graph() } } + tools::success_msg_writer() << "Saving graph is now on"; return true; } @@ -1329,6 +1330,7 @@ bool t_rpc_command_executor::stop_save_graph() return true; } } + tools::success_msg_writer() << "Saving graph is now off"; return true; } @@ -1495,6 +1497,7 @@ bool t_rpc_command_executor::flush_txpool(const std::string &txid) } } + tools::success_msg_writer() << "Pool successfully flushed"; return true; } @@ -1797,6 +1800,7 @@ bool t_rpc_command_executor::relay_tx(const std::string &txid) } } + tools::success_msg_writer() << "Transaction successfully relayed"; return true; } |
