| 1072 | } |
| 1073 | |
| 1074 | std::optional<CTxMemPool::txiter> CTxMemPool::GetIter(const uint256& txid) const |
| 1075 | { |
| 1076 | auto it = mapTx.find(txid); |
| 1077 | if (it != mapTx.end()) return it; |
| 1078 | return std::nullopt; |
| 1079 | } |
| 1080 | |
| 1081 | CTxMemPool::setEntries CTxMemPool::GetIterSet(const std::set<uint256>& hashes) const |
| 1082 | { |
no test coverage detected