mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-02-20 13:54:36 +01:00
wire: correct argument order
This commit is contained in:
parent
91cb4835d3
commit
4ef718276f
1 changed files with 2 additions and 2 deletions
|
@ -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…
Add table
Reference in a new issue