diff --git a/src/validation.cpp b/src/validation.cpp index b47b1d09ae1..5da3387ad29 100644 --- a/src/validation.cpp +++ b/src/validation.cpp @@ -2020,7 +2020,8 @@ void Chainstate::CheckForkWarningConditions() // Before we get past initial download, we cannot reliably alert about forks // (we assume we don't get stuck on a fork before finishing our initial sync) - if (m_chainman.IsInitialBlockDownload()) { + // Also not applicable to the background chainstate + if (m_chainman.IsInitialBlockDownload() || this->GetRole() == ChainstateRole::BACKGROUND) { return; }