| 254 | } |
| 255 | |
| 256 | void fromwire_bitcoin_blkid(const u8 **cursor, size_t *max, |
| 257 | struct bitcoin_blkid *blkid) |
| 258 | { |
| 259 | fromwire_sha256_double(cursor, max, &blkid->shad); |
| 260 | } |
| 261 | |
| 262 | void towire_bitcoin_blkid(u8 **pptr, const struct bitcoin_blkid *blkid) |
| 263 | { |
no test coverage detected