| 222 | |
| 223 | #if 0 |
| 224 | static struct pubkey pubkey_from_hex(const char *hex) |
| 225 | { |
| 226 | struct pubkey pubkey; |
| 227 | |
| 228 | if (strstarts(hex, "0x")) |
| 229 | hex += 2; |
| 230 | if (!pubkey_from_hexstr(hex, strlen(hex), &pubkey)) |
| 231 | abort(); |
| 232 | return pubkey; |
| 233 | } |
| 234 | #endif |
| 235 | |
| 236 | static void report_htlcs(const struct bitcoin_tx *tx, |
nothing calls this directly
no test coverage detected