We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c7219e4 commit 6bd962bCopy full SHA for 6bd962b
lightning/src/ln/channelmanager.rs
@@ -3885,7 +3885,7 @@ where
3885
btree_map::Entry::Vacant(vacant) => Some(vacant.insert(Vec::new())),
3886
}
3887
});
3888
- for (channel_idx, &(temporary_channel_id, counterparty_node_id)) in temporary_channels.iter().enumerate() {
+ for &(temporary_channel_id, counterparty_node_id) in temporary_channels.iter() {
3889
result = result.and_then(|_| self.funding_transaction_generated_intern(
3890
temporary_channel_id,
3891
counterparty_node_id,
0 commit comments