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).
Declared in <node/blockstorage.h>
[[requires_capability(0x7f95130c9768), requires_capability(0x7f950163ca58), requires_capability(0x7f95241d9a48), requires_capability(0x7f951f330d48), requires_capability(0x7f950b9c2d08), requires_capability(0x7f95175c5458)]]
bool
CheckBlockDataAvailability(
CBlockIndex const& upper_block,
CBlockIndex const& lower_block,
BlockStatus block_status = BLOCK_HAVE_DATA);
True if every block in the range has the required data.
| Name | Description |
|---|---|
| upper_block | The newest block in the range to check. |
| lower_block | The oldest block in the range to check; must be an ancestor of upper_block. |
| block_status | Status mask defining what counts as "data available". |