| 230 | } |
| 231 | |
| 232 | static bool bitcoin_blkid_to_hex(const struct bitcoin_blkid *blockid, |
| 233 | char *hexstr, size_t hexstr_len) |
| 234 | { |
| 235 | struct bitcoin_txid fake_txid; |
| 236 | fake_txid.shad = blockid->shad; |
| 237 | return bitcoin_txid_to_hex(&fake_txid, hexstr, hexstr_len); |
| 238 | } |
| 239 | |
| 240 | static char *fmt_bitcoin_blkid(const tal_t *ctx, |
| 241 | const struct bitcoin_blkid *blkid) |
no test coverage detected