| 1229 | } |
| 1230 | |
| 1231 | void CTxMemPool::trackPackageRemoved(const CFeeRate& rate) { |
| 1232 | AssertLockHeld(cs); |
| 1233 | if (rate.GetFeePerK() > rollingMinimumFeeRate) { |
| 1234 | rollingMinimumFeeRate = rate.GetFeePerK(); |
| 1235 | blockSinceLastRollingFeeBump = false; |
| 1236 | } |
| 1237 | } |
| 1238 | |
| 1239 | void CTxMemPool::TrimToSize(size_t sizelimit, std::vector<COutPoint>* pvNoSpendsRemaining) { |
| 1240 | AssertLockHeld(cs); |
nothing calls this directly
no test coverage detected