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:
moneromooo-monero 2018-11-30 14:53:38 +00:00
parent 58ce16d4d9
commit aba9a9c277
No known key found for this signature in database
GPG key ID: 686F07454D6CEFC3
2 changed files with 1 additions and 2 deletions

View file

@ -247,6 +247,7 @@ namespace cryptonote
//-----------------------------------------------------------------------------------
void core::stop()
{
m_miner.stop();
m_blockchain_storage.cancel();
tools::download_async_handle handle;