File tree 1 file changed +3
-3
lines changed 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -390,7 +390,7 @@ where
390
390
/// Usually, this should be called based on the values emitted by the
391
391
/// [`Event::SpendableOutputs`].
392
392
///
393
- /// The given `exclude_static_ouputs ` flag controls whether the sweeper will filter out
393
+ /// The given `exclude_static_outputs ` flag controls whether the sweeper will filter out
394
394
/// [`SpendableOutputDescriptor::StaticOutput`]s, which may be handled directly by the on-chain
395
395
/// wallet implementation.
396
396
///
@@ -400,12 +400,12 @@ where
400
400
/// [`Event::SpendableOutputs`]: crate::events::Event::SpendableOutputs
401
401
pub fn track_spendable_outputs (
402
402
& self , output_descriptors : Vec < SpendableOutputDescriptor > , channel_id : Option < ChannelId > ,
403
- exclude_static_ouputs : bool , delay_until_height : Option < u32 > ,
403
+ exclude_static_outputs : bool , delay_until_height : Option < u32 > ,
404
404
) {
405
405
let mut relevant_descriptors = output_descriptors
406
406
. into_iter ( )
407
407
. filter ( |desc| {
408
- !( exclude_static_ouputs
408
+ !( exclude_static_outputs
409
409
&& matches ! ( desc, SpendableOutputDescriptor :: StaticOutput { .. } ) )
410
410
} )
411
411
. peekable ( ) ;
You can’t perform that action at this time.
0 commit comments