| 289 | } |
| 290 | |
| 291 | WARN_UNUSED_RESULT bool amount_msat_deduct_sat(struct amount_msat *a, |
| 292 | struct amount_sat b) |
| 293 | { |
| 294 | return amount_msat_sub_sat(a, *a, b); |
| 295 | } |
| 296 | |
| 297 | WARN_UNUSED_RESULT bool amount_msat_sub(struct amount_msat *val, |
| 298 | struct amount_msat a, |
no test coverage detected