| 481 | } |
| 482 | |
| 483 | bool amount_msat_less_eq(struct amount_msat a, struct amount_msat b) |
| 484 | { |
| 485 | return a.millisatoshis <= b.millisatoshis; |
| 486 | } |
| 487 | |
| 488 | bool amount_msat_greater_sat(struct amount_msat msat, struct amount_sat sat) |
| 489 | { |
no outgoing calls