(1725 . 13)(1725 . 9)
5 }
6 }
7
8 // Ask the first connected node for block updates
9 static int nAskedForBlocks;
10 if (!pfrom->fClient &&
11 (pfrom->nVersion < 32000 || pfrom->nVersion >= 32400) &&
12 (nAskedForBlocks < 1 || vNodes.size() <= 1))
13 // Ask EVERY connected node (other than self) for block updates
14 if (!pfrom->fClient)
15 {
16 nAskedForBlocks++;
17 pfrom->PushGetBlocks(pindexBest, uint256(0));
18 }
19