| 851 | } |
| 852 | |
| 853 | void CTxMemPool::trackPackageRemoved(const CFeeRate& rate) { |
| 854 | AssertLockHeld(cs); |
| 855 | if (rate.GetFeePerK() > rollingMinimumFeeRate) { |
| 856 | rollingMinimumFeeRate = rate.GetFeePerK(); |
| 857 | blockSinceLastRollingFeeBump = false; |
| 858 | } |
| 859 | } |
| 860 | |
| 861 | void CTxMemPool::TrimToSize(size_t sizelimit, std::vector<COutPoint>* pvNoSpendsRemaining) { |
| 862 | AssertLockHeld(cs); |
nothing calls this directly
no test coverage detected