mirror of
https://codeberg.org/anoncontributorxmr/monero.git
synced 2024-11-10 21:23:27 +01:00
return message in stop_mining if mining never started
This commit is contained in:
parent
4cbb476cd1
commit
dad5bbfdf9
@ -801,7 +801,14 @@ namespace cryptonote
|
||||
bool core_rpc_server::on_stop_mining(const COMMAND_RPC_STOP_MINING::request& req, COMMAND_RPC_STOP_MINING::response& res)
|
||||
{
|
||||
PERF_TIMER(on_stop_mining);
|
||||
if(!m_core.get_miner().stop())
|
||||
cryptonote::miner &miner= m_core.get_miner();
|
||||
if(!miner.is_mining())
|
||||
{
|
||||
res.status = "Mining never started";
|
||||
LOG_PRINT_L0(res.status);
|
||||
return true;
|
||||
}
|
||||
if(!miner.stop())
|
||||
{
|
||||
res.status = "Failed, mining not stopped";
|
||||
LOG_PRINT_L0(res.status);
|
||||
|
Loading…
Reference in New Issue
Block a user