| 250 | } |
| 251 | |
| 252 | void towire_basepoints(u8 **pptr, const struct basepoints *b) |
| 253 | { |
| 254 | towire_pubkey(pptr, &b->revocation); |
| 255 | towire_pubkey(pptr, &b->payment); |
| 256 | towire_pubkey(pptr, &b->htlc); |
| 257 | towire_pubkey(pptr, &b->delayed_payment); |
| 258 | } |
| 259 | |
| 260 | void fromwire_basepoints(const u8 **ptr, size_t *max, |
| 261 | struct basepoints *b) |
nothing calls this directly
no test coverage detected