Skip to content

Commit

Permalink
lightningd: don't complain about bad funding PSBT for elements.
Browse files Browse the repository at this point in the history
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
  • Loading branch information
rustyrussell committed Mar 15, 2021
1 parent e9ecb9c commit 9c13d6f
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions lightningd/opening_control.c
Expand Up @@ -1030,9 +1030,11 @@ static struct command_result *json_fundchannel_complete(struct command *cmd,
return command_fail(cmd, FUNDING_PSBT_INVALID,
"No output to open channel");

if (!amount_sat_eq(amount_sat(funding_psbt->tx->outputs
[*funding_txout_num].satoshi),
fc->funding))
/* Can't really check amounts for elements. */
if (!chainparams->is_elements
&& !amount_sat_eq(amount_sat(funding_psbt->tx->outputs
[*funding_txout_num].satoshi),
fc->funding))
return command_fail(cmd, FUNDING_PSBT_INVALID,
"Output to open channel is %"PRIu64"sat,"
" should be %s",
Expand Down

0 comments on commit 9c13d6f

Please sign in to comment.