Merge e253568da8 into merged_master (Bitcoin PR bitcoin/bitcoin#28053)

This commit is contained in:
Byron Hambly 2025-07-01 11:52:36 +02:00
commit 61ecd1fa45
5 changed files with 7 additions and 13 deletions

View file

@ -14,8 +14,6 @@ class CChainParams;
namespace kernel {
static constexpr bool DEFAULT_STOPAFTERBLOCKIMPORT{false};
/**
* An options struct for `BlockManager`, more ergonomically referred to as
* `BlockManager::Options` due to the using-declaration in `BlockManager`.
@ -24,7 +22,6 @@ struct BlockManagerOpts {
const CChainParams& chainparams;
uint64_t prune_target{0};
bool fast_prune{false};
bool stop_after_block_import{DEFAULT_STOPAFTERBLOCKIMPORT};
const fs::path blocks_dir;
Notifications& notifications;
};