Skip to content

Commit 3c83d12

Browse files
author
Antoine Riard
committed
Fix: use our_to_self_delay in check_spend_remote_htlc
We were previously using their_to_self_delay to regenerate scripts for spending remote revoked htlc transactions, and that's a bug. Their_to_self_delay is delay enforced by peer upon outputs returning funds back to us. Our_to_self_delay is delay enforced by us upon outputs returning funds back to peer.
1 parent ef3e9dd commit 3c83d12

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ln/channelmonitor.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1768,7 +1768,7 @@ impl ChannelMonitor {
17681768
None => return (None, None),
17691769
Some(their_delayed_payment_base_key) => ignore_error!(chan_utils::derive_public_key(&self.secp_ctx, &per_commitment_point, &their_delayed_payment_base_key)),
17701770
};
1771-
let redeemscript = chan_utils::get_revokeable_redeemscript(&revocation_pubkey, self.their_to_self_delay.unwrap(), &delayed_key);
1771+
let redeemscript = chan_utils::get_revokeable_redeemscript(&revocation_pubkey, self.our_to_self_delay, &delayed_key);
17721772
let revokeable_p2wsh = redeemscript.to_v0_p2wsh();
17731773
let htlc_txid = tx.txid(); //TODO: This is gonna be a performance bottleneck for watchtowers!
17741774

0 commit comments

Comments
 (0)