mirror of
https://github.com/twisterarmy/twister-core.git
synced 2025-01-11 07:17:53 +00:00
Merge pull request #1834 from jgarzik/kickblocks
P2P: Do not request blocks from peers with fewer blocks than us
This commit is contained in:
commit
de2b9459bd
@ -2513,6 +2513,7 @@ bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv)
|
|||||||
// Ask the first connected node for block updates
|
// Ask the first connected node for block updates
|
||||||
static int nAskedForBlocks = 0;
|
static int nAskedForBlocks = 0;
|
||||||
if (!pfrom->fClient && !pfrom->fOneShot &&
|
if (!pfrom->fClient && !pfrom->fOneShot &&
|
||||||
|
(pfrom->nStartingHeight > (nBestHeight - 144)) &&
|
||||||
(pfrom->nVersion < NOBLKS_VERSION_START ||
|
(pfrom->nVersion < NOBLKS_VERSION_START ||
|
||||||
pfrom->nVersion >= NOBLKS_VERSION_END) &&
|
pfrom->nVersion >= NOBLKS_VERSION_END) &&
|
||||||
(nAskedForBlocks < 1 || vNodes.size() <= 1))
|
(nAskedForBlocks < 1 || vNodes.size() <= 1))
|
||||||
|
Loading…
Reference in New Issue
Block a user