| 248 | REGISTER_TYPE_TO_STRING(bitcoin_blkid, fmt_bitcoin_blkid); |
| 249 | |
| 250 | void fromwire_bitcoin_blkid(const u8 **cursor, size_t *max, |
| 251 | struct bitcoin_blkid *blkid) |
| 252 | { |
| 253 | fromwire_sha256_double(cursor, max, &blkid->shad); |
| 254 | } |
| 255 | |
| 256 | void towire_bitcoin_blkid(u8 **pptr, const struct bitcoin_blkid *blkid) |
| 257 | { |
no test coverage detected