| 1279 | } |
| 1280 | |
| 1281 | TxMempoolInfo CTxMemPool::info(const uint256& hash) const |
| 1282 | { |
| 1283 | LOCK(cs); |
| 1284 | indexed_transaction_set::const_iterator i = mapTx.find(hash); |
| 1285 | if (i == mapTx.end()) |
| 1286 | return TxMempoolInfo(); |
| 1287 | return GetInfo(i); |
| 1288 | } |
| 1289 | |
| 1290 | void CTxMemPool::PrioritiseTransaction(const uint256& hash, const CAmount& nFeeDelta) |
| 1291 | { |