| 190 | } |
| 191 | |
| 192 | void fromwire_sha256(const u8 **cursor, size_t *max, struct sha256 *sha256) |
| 193 | { |
| 194 | fromwire(cursor, max, sha256, sizeof(*sha256)); |
| 195 | } |
| 196 | |
| 197 | void fromwire_ripemd160(const u8 **cursor, size_t *max, struct ripemd160 *ripemd) |
| 198 | { |
nothing calls this directly
no test coverage detected