Is this amount in this range? */
| 464 | |
| 465 | /* Is this amount in this range? */ |
| 466 | static bool amount_in_range(struct amount_sat amount, |
| 467 | const struct tlv_closing_signed_tlvs_fee_range *r) |
| 468 | { |
| 469 | return amount_sat_greater_eq(amount, r->min_fee_satoshis) |
| 470 | && amount_sat_less_eq(amount, r->max_fee_satoshis); |
| 471 | } |
| 472 | |
| 473 | /* Figure out what we should offer now. */ |
| 474 | static struct amount_sat |
no test coverage detected