Load every block-index entry from the database into memory.
Declared in <node/blockstorage.h>
[[requires_capability(0x7ff38fdd7e88), requires_capability(0x7ff3927651d8), requires_capability(0x7ff381904038), requires_capability(0x7ff3893af338), requires_capability(0x7ff3836ced48), requires_capability(0x7ff3773e6f38)]]
bool
LoadBlockIndexGuts(
Consensus::Params const& consensusParams,
std::function<CBlockIndex*(uint256 const&)> insertBlockIndex,
util::SignalInterrupt const& interrupt);
True on success, false if loading failed or was interrupted.
| Name | Description |
|---|---|
| consensusParams | Consensus parameters used to interpret the stored entries. |
| insertBlockIndex | Callback that inserts a block index for a given hash and returns it. |
| interrupt | Interrupt used to abort a long-running load. |