mirror of
https://github.com/monero-project/monero.git
synced 2024-10-01 11:49:47 -04:00
Merge pull request #2783
416a7933
Print msg upon success for commands that were silent (binaryFate)
This commit is contained in:
commit
49ce59462a
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user