| 201 | |
| 202 | #if 0 |
| 203 | static struct pubkey pubkey_from_hex(const char *hex) |
| 204 | { |
| 205 | struct pubkey pubkey; |
| 206 | |
| 207 | if (strstarts(hex, "0x")) |
| 208 | hex += 2; |
| 209 | if (!pubkey_from_hexstr(hex, strlen(hex), &pubkey)) |
| 210 | abort(); |
| 211 | return pubkey; |
| 212 | } |
| 213 | #endif |
| 214 | |
| 215 | static void report_htlcs(const struct bitcoin_tx *tx, |
nothing calls this directly
no test coverage detected