mirror of
https://github.com/bitcoin/bitcoin.git
synced 2024-11-20 10:38:42 +01:00
Merge pull request #3153
1f3d364
Send multiple inv messages if mempool.size > MAX_INV_SZ (Gavin Andresen)
This commit is contained in:
commit
e213005177
@ -3814,8 +3814,10 @@ bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv)
|
||||
if ((pfrom->pfilter && pfrom->pfilter->IsRelevantAndUpdate(mempool.lookup(hash), hash)) ||
|
||||
(!pfrom->pfilter))
|
||||
vInv.push_back(inv);
|
||||
if (vInv.size() == MAX_INV_SZ)
|
||||
break;
|
||||
if (vInv.size() == MAX_INV_SZ) {
|
||||
pfrom->PushMessage("inv", vInv);
|
||||
vInv.clear();
|
||||
}
|
||||
}
|
||||
if (vInv.size() > 0)
|
||||
pfrom->PushMessage("inv", vInv);
|
||||
|
Loading…
Reference in New Issue
Block a user