| 721 | } |
| 722 | |
| 723 | void invreq_offer_id(const struct tlv_invoice_request *invreq, struct sha256 *id) |
| 724 | { |
| 725 | u8 *wire = tal_arr(tmpctx, u8, 0); |
| 726 | |
| 727 | towire_tlv_invoice_request(&wire, invreq); |
| 728 | calc_offer(wire, id); |
| 729 | } |
| 730 | |
| 731 | void invoice_offer_id(const struct tlv_invoice *invoice, struct sha256 *id) |
| 732 | { |
no test coverage detected