mirror of
https://codeberg.org/anoncontributorxmr/monero.git
synced 2024-11-11 05:33:28 +01:00
daemon: stop miner before we bring the whole thing down
This avoids the miner erroring out trying to submit blocks to a core that's already shut down (and avoids pegging the CPU while we're busy shutting down).
This commit is contained in:
parent
58ce16d4d9
commit
aba9a9c277
@ -247,6 +247,7 @@ namespace cryptonote
|
|||||||
//-----------------------------------------------------------------------------------
|
//-----------------------------------------------------------------------------------
|
||||||
void core::stop()
|
void core::stop()
|
||||||
{
|
{
|
||||||
|
m_miner.stop();
|
||||||
m_blockchain_storage.cancel();
|
m_blockchain_storage.cancel();
|
||||||
|
|
||||||
tools::download_async_handle handle;
|
tools::download_async_handle handle;
|
||||||
|
@ -198,7 +198,6 @@ bool t_daemon::run(bool interactive)
|
|||||||
|
|
||||||
for(auto& rpc : mp_internals->rpcs)
|
for(auto& rpc : mp_internals->rpcs)
|
||||||
rpc->stop();
|
rpc->stop();
|
||||||
mp_internals->core.get().get_miner().stop();
|
|
||||||
MGINFO("Node stopped.");
|
MGINFO("Node stopped.");
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
@ -220,7 +219,6 @@ void t_daemon::stop()
|
|||||||
{
|
{
|
||||||
throw std::runtime_error{"Can't stop stopped daemon"};
|
throw std::runtime_error{"Can't stop stopped daemon"};
|
||||||
}
|
}
|
||||||
mp_internals->core.get().get_miner().stop();
|
|
||||||
mp_internals->p2p.stop();
|
mp_internals->p2p.stop();
|
||||||
for(auto& rpc : mp_internals->rpcs)
|
for(auto& rpc : mp_internals->rpcs)
|
||||||
rpc->stop();
|
rpc->stop();
|
||||||
|
Loading…
Reference in New Issue
Block a user