| 2052 | } |
| 2053 | |
| 2054 | void CBlockIndex::BuildSkip() { |
| 2055 | if (pprev) |
| 2056 | pskip = pprev->GetAncestor(GetSkipHeight(height)); |
| 2057 | } |
| 2058 | |
| 2059 | void PushGetBlocks(CNode *pNode, CBlockIndex *pIndexBegin, uint256 hashEnd) { |
| 2060 | // Ask this guy to fill in what we're missing |
no test coverage detected