update var name

This commit is contained in:
yggverse 2025-08-19 02:32:04 +03:00
parent 2fafe010a4
commit 0c968e029b

View file

@ -91,14 +91,14 @@ async fn main() -> Result<()> {
// clean up nonexistent ban entries from the memory pool // clean up nonexistent ban entries from the memory pool
ban.retain(|i| { ban.retain(|i| {
let is_keep = queue.contains(i); let is_retain = queue.contains(i);
if !is_keep { if !is_retain {
log::debug!( log::debug!(
"remove `{}` from the ban list, as it is no longer available in the source.", "remove `{}` from the ban list, as it is no longer available in the source.",
i.as_string() i.as_string()
) )
} }
is_keep is_retain
}); });
// handle // handle