mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 01:43:36 +01:00
wire: correct argument order
This commit is contained in:
parent
91cb4835d3
commit
4ef718276f
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user