| 1011 | } |
| 1012 | |
| 1013 | TxMempoolInfo CTxMemPool::info(const GenTxid& gtxid) const |
| 1014 | { |
| 1015 | LOCK(cs); |
| 1016 | indexed_transaction_set::const_iterator i = (gtxid.IsWtxid() ? get_iter_from_wtxid(gtxid.GetHash()) : mapTx.find(gtxid.GetHash())); |
| 1017 | if (i == mapTx.end()) |
| 1018 | return TxMempoolInfo(); |
| 1019 | return GetInfo(i); |
| 1020 | } |
| 1021 | |
| 1022 | void CTxMemPool::PrioritiseTransaction(const uint256& hash, const CAmount& nFeeDelta) |
| 1023 | { |