File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -530,7 +530,7 @@ where
530
530
let mut eligible_utxos = utxos. iter ( ) . filter_map ( |utxo| {
531
531
if let Some ( utxo_claim_id) = locked_utxos. get ( & utxo. outpoint ) {
532
532
if * utxo_claim_id != claim_id && !force_conflicting_utxo_spend {
533
- log_debug ! ( self . logger, "Skipping UTXO {} to prevent conflicting spend" , utxo. outpoint) ;
533
+ log_trace ! ( self . logger, "Skipping UTXO {} to prevent conflicting spend" , utxo. outpoint) ;
534
534
return None ;
535
535
}
536
536
}
@@ -545,7 +545,7 @@ where
545
545
if should_spend {
546
546
Some ( ( utxo, fee_to_spend_utxo) )
547
547
} else {
548
- log_debug ! ( self . logger, "Skipping UTXO {} due to dust proximity after spend" , utxo. outpoint) ;
548
+ log_trace ! ( self . logger, "Skipping UTXO {} due to dust proximity after spend" , utxo. outpoint) ;
549
549
None
550
550
}
551
551
} ) . collect :: < Vec < _ > > ( ) ;
You can’t perform that action at this time.
0 commit comments