Skip to content

Commit a61f1d3

Browse files
committed
f - drop debug_assert
1 parent 3dd9503 commit a61f1d3

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

lightning/src/ln/channel.rs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8604,10 +8604,7 @@ impl<SP: Deref> FundedChannel<SP> where
86048604
};
86058605

86068606
match pending_splice.sent_funding_txid {
8607-
Some(sent_funding_txid) if confirmed_funding_txid == sent_funding_txid => {
8608-
debug_assert!(false);
8609-
None
8610-
},
8607+
Some(sent_funding_txid) if confirmed_funding_txid == sent_funding_txid => None,
86118608
_ => {
86128609
Some(msgs::SpliceLocked {
86138610
channel_id: self.context.channel_id(),

0 commit comments

Comments
 (0)