fixup mkcommit's reverse ordered chainparams

This commit is contained in:
lisa neigut 2019-08-08 22:36:57 -05:00 committed by Rusty Russell
parent f98ae2d1d3
commit 0acdeeec06
1 changed files with 2 additions and 2 deletions

View File

@ -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);