aboutsummaryrefslogtreecommitdiff
path: root/src/addrman.h
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2021-08-18 09:17:06 +0200
committerMarcoFalke <falke.marco@gmail.com>2021-09-21 10:07:48 +0200
commitfa298971e6890715e2b0b93f2a7f445d32d6622f (patch)
treeff3f0226efbeaead1a766aa5f134b3eaf76a1cb6 /src/addrman.h
parentfae5c633dc05a045aaac370b383e4799cb0e0590 (diff)
downloadbitcoin-fa298971e6890715e2b0b93f2a7f445d32d6622f.tar.xz
Refactor: Turn the internal addrman check helper into a forced check
Diffstat (limited to 'src/addrman.h')
-rw-r--r--src/addrman.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/addrman.h b/src/addrman.h
index ca291d60ab..7dd8528bef 100644
--- a/src/addrman.h
+++ b/src/addrman.h
@@ -391,11 +391,12 @@ private:
//! Return a random to-be-evicted tried table address.
CAddrInfo SelectTriedCollision_() EXCLUSIVE_LOCKS_REQUIRED(cs);
- //! Consistency check
+ //! Consistency check, taking into account m_consistency_check_ratio. Will std::abort if an inconsistency is detected.
void Check() const EXCLUSIVE_LOCKS_REQUIRED(cs);
- //! Perform consistency check. Returns an error code or zero.
- int Check_() const EXCLUSIVE_LOCKS_REQUIRED(cs);
+ //! Perform consistency check, regardless of m_consistency_check_ratio.
+ //! @returns an error code or zero.
+ int ForceCheckAddrman() const EXCLUSIVE_LOCKS_REQUIRED(cs);
/**
* Return all or many randomly selected addresses, optionally by network.