Updates the modified fees with descendants/ancestors.
| 123 | |
| 124 | // Updates the modified fees with descendants/ancestors. |
| 125 | void UpdateModifiedFee(CAmount fee_diff) const |
| 126 | { |
| 127 | m_modified_fee = SaturatingAdd(m_modified_fee, fee_diff); |
| 128 | } |
| 129 | |
| 130 | // Update the LockPoints after a reorg |
| 131 | void UpdateLockPoints(const LockPoints& lp) const |
no test coverage detected