We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 28af6c7 commit b7462fdCopy full SHA for b7462fd
lightning/src/chain/channelmonitor.rs
@@ -2339,12 +2339,12 @@ impl<Signer: WriteableEcdsaChannelSigner> ChannelMonitorImpl<Signer> {
2339
}
2340
2341
pub fn detected_funding_spend(&self) -> bool {
2342
- self.funding_spend_confirmed.is_some() ||
2343
- self.onchain_events_awaiting_threshold_conf
2344
- .iter().find(|event| match event.event {
2345
- OnchainEvent::FundingSpendConfirmation { .. } => true,
2346
- _ => false,
2347
- }).is_some()
+ self.funding_spend_confirmed.is_some() ||
+ self.onchain_events_awaiting_threshold_conf
+ .iter().find(|event| match event.event {
+ OnchainEvent::FundingSpendConfirmation { .. } => true,
+ _ => false,
+ }).is_some()
2348
2349
2350
pub fn get_outputs_to_watch(&self) -> &HashMap<Txid, Vec<(u32, Script)>> {
0 commit comments