| 102 | setPeginsSpent(_setPeginsSpent) {} |
| 103 | |
| 104 | void CTxMemPoolEntry::UpdateModifiedFee(CAmount fee_diff) |
| 105 | { |
| 106 | nModFeesWithDescendants = SaturatingAdd(nModFeesWithDescendants, fee_diff); |
| 107 | nModFeesWithAncestors = SaturatingAdd(nModFeesWithAncestors, fee_diff); |
| 108 | m_modified_fee = SaturatingAdd(m_modified_fee, fee_diff); |
| 109 | } |
| 110 | |
| 111 | void CTxMemPoolEntry::UpdateLockPoints(const LockPoints& lp) |
| 112 | { |
no test coverage detected