Merge pull request #6526

5d882f4f1 blockchain: fix theoretical race getting bulk timestamps (moneromooo-monero)
pull/320/head
Alexander Blair 4 years ago
commit 814e617117
No known key found for this signature in database
GPG Key ID: C64552D877C32479

@ -962,6 +962,7 @@ start:
//------------------------------------------------------------------
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