| 584 | } |
| 585 | |
| 586 | struct amount_sat amount_sat_div(struct amount_sat sat, u64 div) |
| 587 | { |
| 588 | sat.satoshis /= div; |
| 589 | return sat; |
| 590 | } |
| 591 | |
| 592 | bool amount_sat_mul(struct amount_sat *res, struct amount_sat sat, u64 mul) |
| 593 | { |
no outgoing calls
no test coverage detected