lunar-mining 2 лет назад
Родитель
Сommit
519353ae42
1 измененных файлов с 3 добавлено и 3 удалено
  1. 3 3
      src/net/hosts.rs

+ 3 - 3
src/net/hosts.rs

@@ -197,7 +197,7 @@ impl Hosts {
 
             // Sort the list by last_seen.
             greylist.sort_unstable_by_key(|entry| entry.1);
-            
+
             debug!(target: "net::hosts::greylist_store()", "Sorted greylist: {:?}", greylist)
         }
 
@@ -222,8 +222,8 @@ impl Hosts {
 
         // Sort the list by last_seen.
         whitelist.sort_unstable_by_key(|entry| entry.1);
-        
-        debug!(target: "net::hosts::whitelistt_store()", "Sorted whitelist: {:?}", whitelist);
+
+        debug!(target: "net::hosts::whitelist_store()", "Sorted whitelist: {:?}", whitelist);
         debug!(target: "net::hosts::whitelist_store()", "hosts::whitelist_store() [END]");
     }