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:
moneromooo-monero
2018-09-20 13:31:45 +00:00
parent bad2c7cf31
commit 341b3931ed
4 changed files with 69 additions and 0 deletions
+9
View File
@@ -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.