[net processing] Add Orphanage empty consistency check

When removing the final peer, assert that m_tx_orphanage is empty.
This commit is contained in:
John Newbery
2021-03-31 18:34:49 +01:00
parent 201c5e4aec
commit 9190b01d8d
2 changed files with 8 additions and 0 deletions

View File

@@ -1194,6 +1194,7 @@ void PeerManagerImpl::FinalizeNode(const CNode& node)
assert(m_outbound_peers_with_protect_from_disconnect == 0);
assert(m_wtxid_relay_peers == 0);
assert(m_txrequest.Size() == 0);
assert(m_orphanage.Size() == 0);
}
} // cs_main
if (node.fSuccessfullyConnected && misbehavior == 0 &&