Avoid clippy::significant_drop_in_scrutinee
This commit is contained in:
parent
9d9773bd2a
commit
3608801a54
|
@ -860,7 +860,8 @@ impl ClusterInfo {
|
||||||
(0..crds_value::MAX_EPOCH_SLOTS)
|
(0..crds_value::MAX_EPOCH_SLOTS)
|
||||||
.filter_map(|ix| {
|
.filter_map(|ix| {
|
||||||
let label = CrdsValueLabel::EpochSlots(ix, self_pubkey);
|
let label = CrdsValueLabel::EpochSlots(ix, self_pubkey);
|
||||||
let epoch_slots = gossip_crds.get::<&CrdsValue>(&label)?.epoch_slots()?;
|
let crds_value = gossip_crds.get::<&CrdsValue>(&label)?;
|
||||||
|
let epoch_slots = crds_value.epoch_slots()?;
|
||||||
let first_slot = epoch_slots.first_slot()?;
|
let first_slot = epoch_slots.first_slot()?;
|
||||||
Some((epoch_slots.wallclock, first_slot, ix))
|
Some((epoch_slots.wallclock, first_slot, ix))
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in New Issue