| 9 | struct sha256 *dev_force_channel_secrets_shaseed; |
| 10 | |
| 11 | void towire_secrets(u8 **pptr, const struct secrets *s) |
| 12 | { |
| 13 | towire_privkey(pptr, &s->funding_privkey); |
| 14 | towire_secret(pptr, &s->revocation_basepoint_secret); |
| 15 | towire_secret(pptr, &s->payment_basepoint_secret); |
| 16 | towire_secret(pptr, &s->delayed_payment_basepoint_secret); |
| 17 | towire_secret(pptr, &s->htlc_basepoint_secret); |
| 18 | } |
| 19 | |
| 20 | void fromwire_secrets(const u8 **ptr, size_t *max, struct secrets *s) |
| 21 | { |
nothing calls this directly
no test coverage detected