| 729 | } |
| 730 | |
| 731 | void invoice_offer_id(const struct tlv_invoice *invoice, struct sha256 *id) |
| 732 | { |
| 733 | u8 *wire = tal_arr(tmpctx, u8, 0); |
| 734 | |
| 735 | towire_tlv_invoice(&wire, invoice); |
| 736 | calc_offer(wire, id); |
| 737 | } |
| 738 | |
| 739 | static void calc_invreq(const u8 *tlvstream, struct sha256 *id) |
| 740 | { |
no test coverage detected