bitcoind loves its backwards txids! */
| 28 | |
| 29 | /* bitcoind loves its backwards txids! */ |
| 30 | static struct bitcoin_txid txid_from_hex(const char *hex) |
| 31 | { |
| 32 | struct bitcoin_txid txid; |
| 33 | |
| 34 | if (!bitcoin_txid_from_hex(hex, strlen(hex), &txid)) |
| 35 | abort(); |
| 36 | return txid; |
| 37 | } |
| 38 | |
| 39 | static struct secret secret_from_hex(const char *hex) |
| 40 | { |
no test coverage detected