move-only: Move CAddrMan::Check to cpp file

This speeds up compilation of the whole program because the included
header file is smaller.

Can be reviewed with --color-moved=dimmed-zebra --color-moved-ws=ignore-all-space
This commit is contained in:
MarcoFalke
2021-08-18 09:07:18 +02:00
parent 223ad2fd0d
commit fae5c633dc
2 changed files with 12 additions and 10 deletions

View File

@@ -743,6 +743,17 @@ CAddrInfo CAddrMan::Select_(bool newOnly) const
}
}
void CAddrMan::Check() const
{
AssertLockHeld(cs);
const int err = Check_();
if (err) {
LogPrintf("ADDRMAN CONSISTENCY CHECK FAILED!!! err=%i\n", err);
assert(false);
}
}
int CAddrMan::Check_() const
{
AssertLockHeld(cs);