| 2629 | } instance_of_cmaincleanup; |
| 2630 | |
| 2631 | bool EraseBlockIndexFromSet(CBlockIndex *pIndex) { |
| 2632 | AssertLockHeld(cs_main); |
| 2633 | return setBlockIndexValid.erase(pIndex) > 0; |
| 2634 | } |
| 2635 | |
| 2636 | bool IsInitialBlockDownload() { |
| 2637 | LOCK(cs_main); |
no test coverage detected