blockchain: don't run threads if we have just one function to run

pull/127/head
moneromooo-monero 6 years ago
parent 6f7a5fd4f7
commit 1426209a10
No known key found for this signature in database
GPG Key ID: 686F07454D6CEFC3

@ -4171,7 +4171,7 @@ bool Blockchain::prepare_handle_incoming_blocks(const std::vector<block_complete
if (!m_db->can_thread_bulk_indices())
threads = 1;
if (threads > 1)
if (threads > 1 && amounts.size() > 1)
{
tools::threadpool::waiter waiter;

Loading…
Cancel
Save