We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e797180 commit 4038bbfCopy full SHA for 4038bbf
lightning/src/ln/channel.rs
@@ -6708,8 +6708,10 @@ impl<SP: Deref> FundedChannel<SP> where
6708
self.context.channel_state.set_their_tx_signatures_sent();
6709
6710
if funding_tx_opt.is_some() {
6711
- // We have a finalized funding transaction, so we can set the funding transaction.
+ // We have a finalized funding transaction, so we can set the funding transaction and reset the
6712
+ // signing session fields.
6713
self.funding.funding_transaction = funding_tx_opt.clone();
6714
+ self.interactive_tx_signing_session = None;
6715
}
6716
6717
// Note that `holder_tx_signatures_opt` will be `None` if we sent `tx_signatures` first, so this
0 commit comments