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
530530 let mut eligible_utxos = utxos. iter ( ) . filter_map ( |utxo| {
531531 if let Some ( utxo_claim_id) = locked_utxos. get ( & utxo. outpoint ) {
532532 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) ;
534534 return None ;
535535 }
536536 }
@@ -545,7 +545,7 @@ where
545545 if should_spend {
546546 Some ( ( utxo, fee_to_spend_utxo) )
547547 } 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) ;
549549 None
550550 }
551551 } ) . collect :: < Vec < _ > > ( ) ;
You can’t perform that action at this time.
0 commit comments