(59 . 12)(59 . 6)
24
25 void CNode::PushGetBlocks(CBlockIndex* pindexBegin, uint256 hashEnd)
26 {
27 // Filter out duplicate requests
28 if (pindexBegin == pindexLastGetBlocksBegin && hashEnd == hashLastGetBlocksEnd)
29 return;
30 pindexLastGetBlocksBegin = pindexBegin;
31 hashLastGetBlocksEnd = hashEnd;
32
33 PushMessage("getblocks", CBlockLocator(pindexBegin), hashEnd);
34 }
35