We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 217a5b0 commit 0fb8bddCopy full SHA for 0fb8bdd
1 file changed
lightning/src/ln/channel.rs
@@ -6860,8 +6860,10 @@ impl<SP: Deref> FundedChannel<SP> where
6860
self.context.channel_state.set_their_tx_signatures_sent();
6861
6862
if funding_tx_opt.is_some() {
6863
- // 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
6864
+ // signing session fields.
6865
self.funding.funding_transaction = funding_tx_opt.clone();
6866
+ self.interactive_tx_signing_session = None;
6867
}
6868
6869
// Note that `holder_tx_signatures_opt` will be `None` if we sent `tx_signatures` first, so this
0 commit comments