| 1149 | } |
| 1150 | |
| 1151 | void CTxMemPool::RemoveStaged(setEntries &stage, bool updateDescendants, MemPoolRemovalReason reason) { |
| 1152 | AssertLockHeld(cs); |
| 1153 | UpdateForRemoveFromMempool(stage, updateDescendants); |
| 1154 | for (txiter it : stage) { |
| 1155 | removeUnchecked(it, reason); |
| 1156 | } |
| 1157 | } |
| 1158 | |
| 1159 | int CTxMemPool::Expire(std::chrono::seconds time) |
| 1160 | { |