bitcoind loves its backwards txids! */
| 49 | |
| 50 | /* bitcoind loves its backwards txids! */ |
| 51 | static struct bitcoin_txid txid_from_hex(const char *hex) |
| 52 | { |
| 53 | struct bitcoin_txid txid; |
| 54 | |
| 55 | if (!bitcoin_txid_from_hex(hex, strlen(hex), &txid)) |
| 56 | abort(); |
| 57 | return txid; |
| 58 | } |
| 59 | |
| 60 | static struct secret secret_from_hex(const char *hex) |
| 61 | { |
no test coverage detected