| 4 | #include <wire/wire.h> |
| 5 | |
| 6 | void fromwire_preimage(const u8 **cursor, size_t *max, struct preimage *preimage) |
| 7 | { |
| 8 | fromwire(cursor, max, preimage, sizeof(*preimage)); |
| 9 | } |
| 10 | |
| 11 | void towire_preimage(u8 **pptr, const struct preimage *preimage) |
| 12 | { |
no test coverage detected