wire: correct argument order

This commit is contained in:
Matt Morehouse 2023-08-21 14:18:03 -05:00 committed by Rusty Russell
parent 91cb4835d3
commit 4ef718276f

View File

@ -339,8 +339,8 @@ static void *towire_struct_accept_channel(const tal_t *ctx,
&s->funding_pubkey,
&s->revocation_basepoint,
&s->payment_basepoint,
&s->htlc_basepoint,
&s->delayed_payment_basepoint,
&s->htlc_basepoint,
&s->first_per_commitment_point,
s->tlvs);
}
@ -361,8 +361,8 @@ static struct msg_accept_channel *fromwire_struct_accept_channel(const tal_t *ct
&s->funding_pubkey,
&s->revocation_basepoint,
&s->payment_basepoint,
&s->htlc_basepoint,
&s->delayed_payment_basepoint,
&s->htlc_basepoint,
&s->first_per_commitment_point,
&s->tlvs))
return s;