mirror of
https://codeberg.org/anoncontributorxmr/monero.git
synced 2024-11-23 07:52:25 +00:00
blockchain: fix theoretical race getting bulk timestamps
This commit is contained in:
parent
77a008f714
commit
5d882f4f14
1 changed files with 1 additions and 0 deletions
|
@ -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
|
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 a new issue