| 818 | } |
| 819 | |
| 820 | TxMempoolInfo CTxMemPool::info(const uint256& hash) const |
| 821 | { |
| 822 | LOCK(cs); |
| 823 | indexed_transaction_set::const_iterator i = mapTx.find(hash); |
| 824 | if (i == mapTx.end()) |
| 825 | return TxMempoolInfo(); |
| 826 | return GetInfo(i); |
| 827 | } |
| 828 | |
| 829 | void CTxMemPool::PrioritiseTransaction(const uint256& hash, const CAmount& nFeeDelta) |
| 830 | { |