We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c289217 commit 982ce10Copy full SHA for 982ce10
src/node/txdownloadman_impl.cpp
@@ -578,9 +578,11 @@ CTransactionRef TxDownloadManagerImpl::GetTxToReconsider(NodeId nodeid)
578
void TxDownloadManagerImpl::CheckIsEmpty(NodeId nodeid)
579
{
580
assert(m_txrequest.Count(nodeid) == 0);
581
+ assert(m_orphanage.UsageByPeer(nodeid) == 0);
582
}
583
void TxDownloadManagerImpl::CheckIsEmpty()
584
585
+ assert(m_orphanage.TotalOrphanUsage() == 0);
586
assert(m_orphanage.Size() == 0);
587
assert(m_txrequest.Size() == 0);
588
assert(m_num_wtxid_peers == 0);
0 commit comments