blockchain: fix theoretical race getting bulk timestamps

pull/320/head
moneromooo-monero 4 years ago
parent 77a008f714
commit 5d882f4f14
No known key found for this signature in database
GPG Key ID: 686F07454D6CEFC3

@ -890,6 +890,7 @@ difficulty_type Blockchain::get_difficulty_for_next_block()
//------------------------------------------------------------------
std::vector<time_t> Blockchain::get_last_block_timestamps(unsigned int blocks) const
{
CRITICAL_REGION_LOCAL(m_blockchain_lock);
uint64_t height = m_db->height();
if (blocks > height)
blocks = height;

Loading…
Cancel
Save