Remove unused functions

This commit is contained in:
Michael Vines 2019-03-01 11:23:25 -08:00
parent 46b7b795bf
commit 31f570a9f4
2 changed files with 4 additions and 16 deletions

View File

@ -322,8 +322,8 @@ impl Bank {
ticks_and_stakes: &mut [(u64, u64)],
supermajority_stake: u64,
) -> Option<u64> {
let last_ids = self.tick_hash_queue.read().unwrap();
last_ids.get_confirmation_timestamp(ticks_and_stakes, supermajority_stake)
let hash_queue = self.tick_hash_queue.read().unwrap();
hash_queue.get_confirmation_timestamp(ticks_and_stakes, supermajority_stake)
}
/// Tell the bank which Entry IDs exist on the ledger. This function
@ -389,11 +389,11 @@ impl Bank {
max_age: usize,
error_counters: &mut ErrorCounters,
) -> Vec<Result<()>> {
let last_ids = self.tick_hash_queue.read().unwrap();
let hash_queue = self.tick_hash_queue.read().unwrap();
txs.iter()
.zip(lock_results.into_iter())
.map(|(tx, lock_res)| {
if lock_res.is_ok() && !last_ids.check_entry_id_age(tx.last_id, max_age) {
if lock_res.is_ok() && !hash_queue.check_entry_id_age(tx.last_id, max_age) {
error_counters.reserve_last_id += 1;
Err(BankError::LastIdNotFound)
} else {
@ -791,11 +791,6 @@ impl Bank {
pub fn epoch_height(&self) -> u64 {
self.slot_height() / self.slots_per_epoch()
}
#[cfg(test)]
pub fn last_ids(&self) -> &RwLock<HashQueue> {
&self.tick_hash_queue
}
}
#[cfg(test)]

View File

@ -120,13 +120,6 @@ impl HashQueue {
}
None
}
#[cfg(test)]
pub fn clear(&mut self) {
self.entries = HashMap::new();
self.tick_height = 0;
self.last_hash = None;
}
}
#[cfg(test)]
mod tests {