cryptonote_core: warn when the block rate deviates from expectations
The warning threshold is set to allow a false positive every ten days on average.
This commit is contained in:
@@ -880,6 +880,15 @@ difficulty_type Blockchain::get_difficulty_for_next_block()
|
||||
return diff;
|
||||
}
|
||||
//------------------------------------------------------------------
|
||||
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();
|
||||
while (blocks--)
|
||||
timestamps[blocks] = m_db->get_block_timestamp(height - blocks - 1);
|
||||
return timestamps;
|
||||
}
|
||||
//------------------------------------------------------------------
|
||||
// This function removes blocks from the blockchain until it gets to the
|
||||
// position where the blockchain switch started and then re-adds the blocks
|
||||
// that had been removed.
|
||||
|
||||
Reference in New Issue
Block a user