mirror of
https://github.com/monero-project/monero.git
synced 2024-10-01 11:49:47 -04:00
core: do not force sync the db when finding a block in regtest mode
for a slight performance boost in functional tests
This commit is contained in:
parent
a2e8d1d427
commit
503c3e06df
@ -1563,7 +1563,8 @@ namespace cryptonote
|
||||
return false;
|
||||
}
|
||||
m_blockchain_storage.add_new_block(b, bvc);
|
||||
cleanup_handle_incoming_blocks(true);
|
||||
const bool force_sync = m_nettype != FAKECHAIN;
|
||||
cleanup_handle_incoming_blocks(force_sync);
|
||||
//anyway - update miner template
|
||||
update_miner_block_template();
|
||||
m_miner.resume();
|
||||
|
Loading…
Reference in New Issue
Block a user