| 49 | } |
| 50 | |
| 51 | static const char *report_fmt_debit(const tal_t *ctx, |
| 52 | const struct bkpr *bkpr UNNEEDED, |
| 53 | const struct income_event *e) |
| 54 | { |
| 55 | if (amount_msat_is_zero(e->debit)) |
| 56 | return ZERO_AMOUNT; |
| 57 | return fmt_amount_msat_btc(ctx, e->debit, false); |
| 58 | } |
| 59 | |
| 60 | static const char *report_fmt_fees(const tal_t *ctx, |
| 61 | const struct bkpr *bkpr UNNEEDED, |
nothing calls this directly
no test coverage detected