File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -1761,7 +1761,10 @@ pub(super) trait InteractivelyFunded<SP: Deref> where SP::Target: SignerProvider
1761
1761
context.funding_transaction = Some(signing_session.unsigned_tx.clone().into_unsigned_tx());
1762
1762
commitment_signed
1763
1763
},
1764
- Err(err) => return Err(ChannelError::Close((err.to_string(), ClosureReason::HolderForceClosed { broadcasted_latest_txn: Some(false) }))),
1764
+ Err(err) => {
1765
+ context.channel_transaction_parameters.funding_outpoint = None;
1766
+ return Err(ChannelError::Close((err.to_string(), ClosureReason::HolderForceClosed { broadcasted_latest_txn: Some(false) })))
1767
+ },
1765
1768
};
1766
1769
1767
1770
let funding_ready_for_sig_event = None;
@@ -4008,7 +4011,6 @@ impl<SP: Deref> ChannelContext<SP> where SP::Target: SignerProvider {
4008
4011
Ok(res) => res,
4009
4012
Err(e) => {
4010
4013
log_error!(logger, "Got bad signatures: {:?}!", e);
4011
- self.channel_transaction_parameters.funding_outpoint = None;
4012
4014
return Err(e);
4013
4015
}
4014
4016
};
You can’t perform that action at this time.
0 commit comments