Browse Source

Merge #7482: [P2P] Ensure headers count is correct

301bc7b Update nQueuedValidatedHeaders after peer disconnection (Suhas Daftuar)
0.13
Wladimir J. van der Laan 9 years ago
parent
commit
3ffe4b241e
No known key found for this signature in database
GPG Key ID: 74810B012346C9A6
  1. 4
      src/main.cpp

4
src/main.cpp

@ -332,8 +332,10 @@ void FinalizeNode(NodeId nodeid) { @@ -332,8 +332,10 @@ void FinalizeNode(NodeId nodeid) {
AddressCurrentlyConnected(state->address);
}
BOOST_FOREACH(const QueuedBlock& entry, state->vBlocksInFlight)
BOOST_FOREACH(const QueuedBlock& entry, state->vBlocksInFlight) {
nQueuedValidatedHeaders -= entry.fValidatedHeaders;
mapBlocksInFlight.erase(entry.hash);
}
EraseOrphansFor(nodeid);
nPreferredDownload -= state->fPreferredDownload;

Loading…
Cancel
Save