| 11 | #endif |
| 12 | |
| 13 | static bool trim(const struct htlc *htlc, |
| 14 | u32 feerate_per_kw, |
| 15 | struct amount_sat dust_limit, |
| 16 | bool option_anchor_outputs, |
| 17 | bool option_anchors_zero_fee_htlc_tx, |
| 18 | enum side side) |
| 19 | { |
| 20 | return htlc_is_trimmed(htlc_owner(htlc), htlc->amount, |
| 21 | feerate_per_kw, dust_limit, side, |
| 22 | option_anchor_outputs, |
| 23 | option_anchors_zero_fee_htlc_tx); |
| 24 | } |
| 25 | |
| 26 | size_t commit_tx_num_untrimmed(const struct htlc **htlcs, |
| 27 | u32 feerate_per_kw, |
no test coverage detected