mirror of
https://github.com/monero-project/monero.git
synced 2025-01-10 21:04:33 +00:00
blockchain: fix block rate check for empty blockchains
This commit is contained in:
parent
34d2850fac
commit
4a7917ef6b
1 changed files with 3 additions and 1 deletions
|
@ -902,8 +902,10 @@ 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> timestamps(blocks);
|
||||
uint64_t height = m_db->height();
|
||||
if (blocks > height)
|
||||
blocks = height;
|
||||
std::vector<time_t> timestamps(blocks);
|
||||
while (blocks--)
|
||||
timestamps[blocks] = m_db->get_block_timestamp(height - blocks - 1);
|
||||
return timestamps;
|
||||
|
|
Loading…
Reference in a new issue