| 26 | } |
| 27 | |
| 28 | void fromwire_bip32_key_version(const u8** cursor, size_t *max, |
| 29 | struct bip32_key_version *version) |
| 30 | { |
| 31 | version->bip32_pubkey_version = fromwire_u32(cursor, max); |
| 32 | version->bip32_privkey_version = fromwire_u32(cursor, max); |
| 33 | } |
| 34 | |
| 35 | void towire_bip32_key_version(u8 **pptr, const struct bip32_key_version *version) |
| 36 | { |