| 2916 | return invoices_iterator_deref(ctx, wallet->invoices, it); |
| 2917 | } |
| 2918 | bool wallet_invoice_resolve(struct wallet *wallet, |
| 2919 | struct invoice invoice, |
| 2920 | struct amount_msat msatoshi_received) |
| 2921 | { |
| 2922 | return invoices_resolve(wallet->invoices, invoice, msatoshi_received); |
| 2923 | } |
| 2924 | void wallet_invoice_waitany(const tal_t *ctx, |
| 2925 | struct wallet *wallet, |
| 2926 | u64 lastpay_index, |
nothing calls this directly
no test coverage detected