Skip to content

Commit 49f8ef6

Browse files
committed
f - use FundingScope::get_funding_txid
1 parent c19c2f5 commit 49f8ef6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lightning/src/ln/channel.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -9023,7 +9023,7 @@ impl<SP: Deref> FundedChannel<SP> where
90239023
if sent_funding_txid == msg.splice_txid {
90249024
if let Some(funding) = self.pending_funding
90259025
.iter_mut()
9026-
.find(|funding| funding.get_funding_txo().map(|txo| txo.txid) == Some(sent_funding_txid))
9026+
.find(|funding| funding.get_funding_txid() == Some(sent_funding_txid))
90279027
{
90289028
promote_splice_funding!(self, funding);
90299029
return Ok(self.get_announcement_sigs(node_signer, chain_hash, user_config, best_block.height, logger));

0 commit comments

Comments
 (0)