| 234 | } |
| 235 | |
| 236 | void towire_basepoints(u8 **pptr, const struct basepoints *b) |
| 237 | { |
| 238 | towire_pubkey(pptr, &b->revocation); |
| 239 | towire_pubkey(pptr, &b->payment); |
| 240 | towire_pubkey(pptr, &b->htlc); |
| 241 | towire_pubkey(pptr, &b->delayed_payment); |
| 242 | } |
| 243 | |
| 244 | void fromwire_basepoints(const u8 **ptr, size_t *max, |
| 245 | struct basepoints *b) |
nothing calls this directly
no test coverage detected