blockchain: fix theoretical race getting bulk timestamps

pull/255/head
moneromooo-monero 4 years ago committed by wowario
parent e74aff06c2
commit febb8df4bb
No known key found for this signature in database
GPG Key ID: 24DCBE762DE9C111

@ -916,6 +916,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