Remove dead code

This commit is contained in:
Michael Vines 2020-02-18 10:02:29 -07:00
parent 7305a1f407
commit 83a8e82626
2 changed files with 8 additions and 18 deletions

View File

@ -440,19 +440,6 @@ impl ClusterInfo {
.map(|x| (x.value.epoch_slots().unwrap(), x.insert_timestamp))
}
pub fn get_gossiped_root_for_node(&self, pubkey: &Pubkey, since: Option<u64>) -> Option<u64> {
self.gossip
.crds
.table
.get(&CrdsValueLabel::EpochSlots(*pubkey))
.filter(|x| {
since
.map(|since| x.insert_timestamp > since)
.unwrap_or(true)
})
.map(|x| x.value.epoch_slots().unwrap().root)
}
pub fn get_contact_info_for_node(&self, pubkey: &Pubkey) -> Option<&ContactInfo> {
self.gossip
.crds

View File

@ -1,9 +1,12 @@
use solana_runtime::accounts_db::AccountStorageEntry;
use solana_runtime::bank::BankSlotDelta;
use solana_runtime::{accounts_db::AccountStorageEntry, bank::BankSlotDelta};
use solana_sdk::clock::Slot;
use std::path::PathBuf;
use std::sync::mpsc::{Receiver, SendError, Sender};
use std::sync::Arc;
use std::{
path::PathBuf,
sync::{
mpsc::{Receiver, SendError, Sender},
Arc,
},
};
use tempfile::TempDir;
pub type SnapshotPackageSender = Sender<SnapshotPackage>;