Check whether the block associated with this index entry is pruned or not.
| 529 | |
| 530 | //! Check whether the block associated with this index entry is pruned or not. |
| 531 | inline bool IsBlockPruned(const CBlockIndex* pblockindex) |
| 532 | { |
| 533 | return (fHavePruned && !(pblockindex->nStatus & BLOCK_HAVE_DATA) && pblockindex->nTx > 0); |
| 534 | } |
| 535 | |
| 536 | bool IsBTGHardForkEnabledForCurrentBlock(const Consensus::Params& params); |
| 537 |
no outgoing calls
no test coverage detected