mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-02-20 13:54:36 +01:00
fixup mkcommit's reverse ordered chainparams
This commit is contained in:
parent
f98ae2d1d3
commit
0acdeeec06
1 changed files with 2 additions and 2 deletions
|
@ -368,7 +368,7 @@ int main(int argc, char *argv[])
|
|||
if (!per_commit_point(&localseed, &local_per_commit_point, commitnum))
|
||||
errx(1, "Bad deriving local per-commitment-point");
|
||||
|
||||
local_txs = channel_txs(chainparams, NULL, &htlcmap, &wscripts, channel,
|
||||
local_txs = channel_txs(NULL, chainparams, &htlcmap, &wscripts, channel,
|
||||
&local_per_commit_point, commitnum, LOCAL);
|
||||
|
||||
printf("## local_commitment\n"
|
||||
|
@ -469,7 +469,7 @@ int main(int argc, char *argv[])
|
|||
/* Create the remote commitment tx */
|
||||
if (!per_commit_point(&remoteseed, &remote_per_commit_point, commitnum))
|
||||
errx(1, "Bad deriving remote per-commitment-point");
|
||||
remote_txs = channel_txs(chainparams, NULL, &htlcmap, &wscripts, channel,
|
||||
remote_txs = channel_txs(NULL, chainparams, &htlcmap, &wscripts, channel,
|
||||
&remote_per_commit_point, commitnum, REMOTE);
|
||||
remote_txs[0]->input_amounts[0]
|
||||
= tal_dup(remote_txs[0], struct amount_sat, &funding_amount);
|
||||
|
|
Loading…
Add table
Reference in a new issue