diff options
author | Jeff Garzik <jgarzik@exmulti.com> | 2012-09-24 13:26:09 -0400 |
---|---|---|
committer | Jeff Garzik <jgarzik@redhat.com> | 2012-09-24 13:26:09 -0400 |
commit | 93dd68e924c7cf24b75bfb5b83b1be1cdc27dbdc (patch) | |
tree | aa6e515580098597bbf5340ad534253048ca545e /src/main.cpp | |
parent | 6cbae37667f504d9ecd6173e1eff817d2b7aaf0c (diff) |
P2P: Do not request blocks from peers with fewer blocks than us
If the remote node has a shorter chain, do not waste our
special getblocks request on them.
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main.cpp b/src/main.cpp index fbaf05dfc7..206d85e534 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -2513,6 +2513,7 @@ bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv) // Ask the first connected node for block updates static int nAskedForBlocks = 0; if (!pfrom->fClient && !pfrom->fOneShot && + (pfrom->nStartingHeight > (nBestHeight - 144)) && (pfrom->nVersion < NOBLKS_VERSION_START || pfrom->nVersion >= NOBLKS_VERSION_END) && (nAskedForBlocks < 1 || vNodes.size() <= 1)) |