| 8 | const char *bech32_hrp = "lni"; |
| 9 | |
| 10 | void run(const u8 *data, size_t size) |
| 11 | { |
| 12 | const char *fail; |
| 13 | |
| 14 | invoice_decode(tmpctx, (const char *)data, size, /*feature_set=*/NULL, |
| 15 | /*must_be_chain=*/NULL, &fail); |
| 16 | |
| 17 | clean_tmpctx(); |
| 18 | } |
nothing calls this directly
no test coverage detected