Merge 4e8a7654f6 into merged_master (Bitcoin PR bitcoin/bitcoin#25193)

This commit is contained in:
Byron Hambly 2025-06-20 16:01:14 +02:00
commit 73663a4c89
7 changed files with 58 additions and 31 deletions

View file

@ -28,6 +28,7 @@
namespace node {
std::atomic_bool fReindex(false);
std::atomic_bool g_indexes_ready_to_sync{false};
// ELEMENTS
bool fTrimHeaders = false;
@ -953,5 +954,6 @@ void ThreadImport(ChainstateManager& chainman, std::vector<fs::path> vImportFile
}
} // End scope of ImportingNow
chainman.ActiveChainstate().LoadMempool(mempool_path);
g_indexes_ready_to_sync = true;
}
} // namespace node