validation: invert m_cached_finished_ibd to m_cached_is_ibd

Rename and invert the internal IBD latch so the cached value directly matches `IsInitialBlockDownload()` (true while in IBD, then latched to false).

This is a behavior-preserving refactor to avoid double negatives.
This commit is contained in:
Lőrinc
2026-01-12 00:13:04 +01:00
parent 8be54e3b19
commit 8d531c6210
5 changed files with 16 additions and 18 deletions

View File

@@ -32,14 +32,14 @@ void TestChainstateManager::DisableNextWrite()
void TestChainstateManager::ResetIbd()
{
m_cached_finished_ibd = false;
m_cached_is_ibd = true;
assert(IsInitialBlockDownload());
}
void TestChainstateManager::JumpOutOfIbd()
{
Assert(IsInitialBlockDownload());
m_cached_finished_ibd = true;
m_cached_is_ibd = false;
Assert(!IsInitialBlockDownload());
}