| 32 | } |
| 33 | |
| 34 | static struct bitcoin_txid txid_from_hex(const char *hex) |
| 35 | { |
| 36 | struct bitcoin_txid txid; |
| 37 | if (!bitcoin_txid_from_hex(hex, strlen(hex), &txid)) |
| 38 | assert(false && "bitcoin_txid_from_hex failed"); |
| 39 | return txid; |
| 40 | } |
| 41 | |
| 42 | static struct pubkey pubkey_from_hex(const char *hex) |
| 43 | { |
no test coverage detected