| 2891 | return invoices_find_unpaid(wallet->invoices, pinvoice, rhash); |
| 2892 | } |
| 2893 | bool wallet_invoice_delete(struct wallet *wallet, |
| 2894 | struct invoice invoice) |
| 2895 | { |
| 2896 | return invoices_delete(wallet->invoices, invoice); |
| 2897 | } |
| 2898 | bool wallet_invoice_delete_description(struct wallet *wallet, |
| 2899 | struct invoice invoice) |
| 2900 | { |
nothing calls this directly
no test coverage detected