| 34 | } |
| 35 | |
| 36 | void fromwire_secret(const u8 **cursor, size_t *max, struct secret *secret) |
| 37 | { |
| 38 | fromwire(cursor, max, secret->data, sizeof(secret->data)); |
| 39 | } |
| 40 | |
| 41 | void fromwire_privkey(const u8 **cursor, size_t *max, struct privkey *privkey) |
| 42 | { |
no test coverage detected