| 18 | REGISTER_TYPE_TO_HEXSTR(sha256_double); |
| 19 | |
| 20 | void towire_sha256_double(u8 **pptr, const struct sha256_double *sha256d) |
| 21 | { |
| 22 | towire_sha256(pptr, &sha256d->sha); |
| 23 | } |
| 24 | |
| 25 | void fromwire_sha256_double(const u8 **cursor, size_t *max, |
| 26 | struct sha256_double *sha256d) |
no test coverage detected