Update nQueuedValidatedHeaders after peer disconnection

Github-Pull: #7482
Rebased-From: 301bc7bc7e83f4c268c1722558b07dbb5b55fa92
This commit is contained in:
Suhas Daftuar 2016-02-08 15:32:29 -05:00 committed by Wladimir J. van der Laan
parent b2f2b85ad5
commit e16f5b40c2
No known key found for this signature in database
GPG Key ID: 74810B012346C9A6

View File

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