| 496 | } |
| 497 | |
| 498 | struct amount_msat amount_msat_div(struct amount_msat msat, u64 div) |
| 499 | { |
| 500 | msat.millisatoshis /= div; |
| 501 | return msat; |
| 502 | } |
| 503 | |
| 504 | struct amount_sat amount_sat_div(struct amount_sat sat, u64 div) |
| 505 | { |
no outgoing calls
no test coverage detected