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