| 687 | } |
| 688 | |
| 689 | const CTransaction* CTxMemPool::GetConflictTx(const COutPoint& prevout) const |
| 690 | { |
| 691 | const auto it = mapNextTx.find(prevout); |
| 692 | return it == mapNextTx.end() ? nullptr : &(it->second->GetTx()); |
| 693 | } |
| 694 | |
| 695 | std::optional<CTxMemPool::txiter> CTxMemPool::GetIter(const Txid& txid) const |
| 696 | { |