mirror of
https://github.com/monero-project/monero.git
synced 2024-11-18 00:37:43 +00:00
blockchain: don't run threads if we have just one function to run
This commit is contained in:
parent
6f7a5fd4f7
commit
1426209a10
1 changed files with 1 additions and 1 deletions
|
@ -4171,7 +4171,7 @@ bool Blockchain::prepare_handle_incoming_blocks(const std::vector<block_complete
|
||||||
if (!m_db->can_thread_bulk_indices())
|
if (!m_db->can_thread_bulk_indices())
|
||||||
threads = 1;
|
threads = 1;
|
||||||
|
|
||||||
if (threads > 1)
|
if (threads > 1 && amounts.size() > 1)
|
||||||
{
|
{
|
||||||
tools::threadpool::waiter waiter;
|
tools::threadpool::waiter waiter;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue