mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-10 20:03:34 -03:00
refactor: Silence GCC Wmissing-field-initializers in ChainstateManagerOpts
This commit is contained in:
parent
bd478890c5
commit
fa29ef00ad
1 changed files with 2 additions and 2 deletions
|
@ -31,9 +31,9 @@ struct ChainstateManagerOpts {
|
|||
std::optional<bool> check_block_index{};
|
||||
bool checkpoints_enabled{DEFAULT_CHECKPOINTS_ENABLED};
|
||||
//! If set, it will override the minimum work we will assume exists on some valid chain.
|
||||
std::optional<arith_uint256> minimum_chain_work;
|
||||
std::optional<arith_uint256> minimum_chain_work{};
|
||||
//! If set, it will override the block hash whose ancestors we will assume to have valid scripts without checking them.
|
||||
std::optional<uint256> assumed_valid_block;
|
||||
std::optional<uint256> assumed_valid_block{};
|
||||
//! If the tip is older than this, the node is considered to be in initial block download.
|
||||
std::chrono::seconds max_tip_age{DEFAULT_MAX_TIP_AGE};
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue