| 283 | } |
| 284 | |
| 285 | WARN_UNUSED_RESULT bool amount_msat_deduct(struct amount_msat *a, |
| 286 | struct amount_msat b) |
| 287 | { |
| 288 | return amount_msat_sub(a, *a, b); |
| 289 | } |
| 290 | |
| 291 | WARN_UNUSED_RESULT bool amount_msat_deduct_sat(struct amount_msat *a, |
| 292 | struct amount_sat b) |
no test coverage detected