Skip to content

Commit 068cdc8

Browse files
committed
htlc_tx: fix fee for HTLC-timeout tx.
Reported-by: Fabrice Drouin <fabrice.drouin@acinq.fr> Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
1 parent 726e722 commit 068cdc8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lightningd/htlc_tx.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ struct bitcoin_tx *htlc_timeout_tx(const tal_t *ctx,
128128
*/
129129
return htlc_tx(ctx, commit_txid, commit_output_number, offered_htlc,
130130
to_self_delay, revocation_pubkey, local_delayedkey,
131-
htlc_success_fee(feerate_per_kw),
131+
htlc_timeout_fee(feerate_per_kw),
132132
offered_htlc->expiry.locktime);
133133
}
134134

0 commit comments

Comments
 (0)