mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-11-11 06:28:31 +01:00
validation: allow to specify frequency for -checkblockindex
This makes it similar to -checkaddrman and -checkmempool, which also allow to run the check occasionally instead of always / never. Co-authored-by: Ryan Ofsky <ryan@ofsky.org>
This commit is contained in:
@@ -24,7 +24,10 @@
|
||||
namespace node {
|
||||
util::Result<void> ApplyArgsManOptions(const ArgsManager& args, ChainstateManager::Options& opts)
|
||||
{
|
||||
if (auto value{args.GetBoolArg("-checkblockindex")}) opts.check_block_index = *value;
|
||||
if (auto value{args.GetIntArg("-checkblockindex")}) {
|
||||
// Interpret bare -checkblockindex argument as 1 instead of 0.
|
||||
opts.check_block_index = args.GetArg("-checkblockindex")->empty() ? 1 : *value;
|
||||
}
|
||||
|
||||
if (auto value{args.GetBoolArg("-checkpoints")}) opts.checkpoints_enabled = *value;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user