mirror of
https://github.com/aljazceru/lightning.git
synced 2025-12-19 15:14:23 +01:00
fixup mkcommit's reverse ordered chainparams
This commit is contained in:
committed by
Rusty Russell
parent
f98ae2d1d3
commit
0acdeeec06
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user