| 2930 | invoices_waitany(ctx, wallet->invoices, lastpay_index, cb, cbarg); |
| 2931 | } |
| 2932 | void wallet_invoice_waitone(const tal_t *ctx, |
| 2933 | struct wallet *wallet, |
| 2934 | struct invoice invoice, |
| 2935 | void (*cb)(const struct invoice *, void*), |
| 2936 | void *cbarg) |
| 2937 | { |
| 2938 | invoices_waitone(ctx, wallet->invoices, invoice, cb, cbarg); |
| 2939 | } |
| 2940 | |
| 2941 | struct invoice_details *wallet_invoice_details(const tal_t *ctx, |
| 2942 | struct wallet *wallet, |
nothing calls this directly
no test coverage detected