0
0
Fork 0
mirror of https://github.com/bitcoin/bitcoin.git synced 2025-02-08 10:31:50 -05:00

Fix typo from PR25717

This commit is contained in:
Suhas Daftuar 2022-08-30 12:46:19 -04:00
parent e5982ecdc4
commit 94af3e43e2

View file

@ -3718,7 +3718,7 @@ void ChainstateManager::ReportHeadersPresync(const arith_uint256& work, int64_t
{ {
LOCK(cs_main); LOCK(cs_main);
// Don't report headers presync progress if we already have a post-minchainwork header chain. // Don't report headers presync progress if we already have a post-minchainwork header chain.
// This means we lose reporting for potentially legimate, but unlikely, deep reorgs, but // This means we lose reporting for potentially legitimate, but unlikely, deep reorgs, but
// prevent attackers that spam low-work headers from filling our logs. // prevent attackers that spam low-work headers from filling our logs.
if (m_best_header->nChainWork >= UintToArith256(GetConsensus().nMinimumChainWork)) return; if (m_best_header->nChainWork >= UintToArith256(GetConsensus().nMinimumChainWork)) return;
// Rate limit headers presync updates to 4 per second, as these are not subject to DoS // Rate limit headers presync updates to 4 per second, as these are not subject to DoS