| 502 | } |
| 503 | |
| 504 | struct amount_sat amount_sat_div(struct amount_sat sat, u64 div) |
| 505 | { |
| 506 | sat.satoshis /= div; |
| 507 | return sat; |
| 508 | } |
| 509 | |
| 510 | bool amount_sat_mul(struct amount_sat *res, struct amount_sat sat, u64 mul) |
| 511 | { |
no outgoing calls
no test coverage detected