File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -8805,14 +8805,14 @@ where
8805
8805
// - MUST process `my_current_funding_locked` as if it was receiving `splice_locked`
8806
8806
// for this `txid`.
8807
8807
#[cfg(splicing)]
8808
- let implicit_splice_locked = msg.my_current_funding_locked_txid. and_then(|funding_txid | {
8808
+ let implicit_splice_locked = msg.my_current_funding_locked.as_ref(). and_then(|funding_locked | {
8809
8809
self.pending_funding
8810
8810
.iter()
8811
- .find(|funding| funding.get_funding_txid() == Some(funding_txid ))
8811
+ .find(|funding| funding.get_funding_txid() == Some(funding_locked.txid ))
8812
8812
.and_then(|_| {
8813
8813
self.pending_splice.as_ref().and_then(|pending_splice| {
8814
- (Some(funding_txid ) != pending_splice.received_funding_txid)
8815
- .then(|| funding_txid )
8814
+ (Some(funding_locked.txid ) != pending_splice.received_funding_txid)
8815
+ .then(|| funding_locked.txid )
8816
8816
})
8817
8817
})
8818
8818
.map(|splice_txid| msgs::SpliceLocked {
You can’t perform that action at this time.
0 commit comments