- 712C2726313EE78027C22B67DB8F148572C19003463D8438F47D64DC4F354376A7B492D5A7BFBE324FE8B8E6023E4836473B2B76099B72F58262D616665D0F41
+ 6D7C7634CCE09792942FC69CF945B64E8F8E77B496AD6BBAED12DCCBC5E13C31FC2F1162735CAE7951893FB6B3635955703059B1E8BA1607CC483C494C0A126C
bitcoin/src/net.cpp
(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