node::BlockManager::CheckBlockDataAvailability

Check if all blocks in the [upper_block, lower_block]range have data available as defined by the status mask. The caller is responsible for ensuring that lower_block is an ancestor of upper_block (part of the same chain).

Synopsis

Declared in <node/blockstorage.h>

[[requires_capability(0x7ff37af16f88), requires_capability(0x7ff376b83f68), requires_capability(0x7ff37ded1b58), requires_capability(0x7ff36c616d78), requires_capability(0x7ff37c49abd8), requires_capability(0x7ff39283d5d8)]]
bool
CheckBlockDataAvailability(
    CBlockIndex const& upper_block,
    CBlockIndex const& lower_block,
    BlockStatus block_status = BLOCK_HAVE_DATA);

Return Value

True if every block in the range has the required data.

Parameters

NameDescription
upper_blockThe newest block in the range to check.
lower_blockThe oldest block in the range to check; must be an ancestor of upper_block.
block_statusStatus mask defining what counts as "data available".