| 120 | } |
| 121 | |
| 122 | bool CTxMemPool::HasDescendants(const Txid& txid) const |
| 123 | { |
| 124 | LOCK(cs); |
| 125 | auto entry = GetEntry(txid); |
| 126 | if (!entry) return false; |
| 127 | return m_txgraph->GetDescendants(*entry, TxGraph::Level::MAIN).size() > 1; |
| 128 | } |
| 129 | |
| 130 | CTxMemPool::setEntries CTxMemPool::CalculateMemPoolAncestors(const CTxMemPoolEntry &entry) const |
| 131 | { |
no test coverage detected