mirror of
https://github.com/sigp/lighthouse.git
synced 2026-03-11 18:04:18 +00:00
Rust 1.85 lints (#7019)
N/A 2 changes: 1. Replace Option::map_or(true, ...) with is_none_or(...) 2. Remove unnecessary `Into::into` blocks where the type conversion is apparent from the types
This commit is contained in:
@@ -187,7 +187,7 @@ pub fn spawn_notifier<T: BeaconChainTypes>(
|
||||
let is_backfilling = matches!(current_sync_state, SyncState::BackFillSyncing { .. });
|
||||
if is_backfilling
|
||||
&& last_backfill_log_slot
|
||||
.map_or(true, |slot| slot + BACKFILL_LOG_INTERVAL <= current_slot)
|
||||
.is_none_or(|slot| slot + BACKFILL_LOG_INTERVAL <= current_slot)
|
||||
{
|
||||
last_backfill_log_slot = Some(current_slot);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user