Merge pull request #6526
5d882f4f1
blockchain: fix theoretical race getting bulk timestamps (moneromooo-monero)
This commit is contained in:
commit
814e617117
|
@ -962,6 +962,7 @@ start:
|
||||||
//------------------------------------------------------------------
|
//------------------------------------------------------------------
|
||||||
std::vector<time_t> Blockchain::get_last_block_timestamps(unsigned int blocks) const
|
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();
|
uint64_t height = m_db->height();
|
||||||
if (blocks > height)
|
if (blocks > height)
|
||||||
blocks = height;
|
blocks = height;
|
||||||
|
|
Loading…
Reference in New Issue