Remove unused functions
This commit is contained in:
parent
46b7b795bf
commit
31f570a9f4
|
@ -322,8 +322,8 @@ impl Bank {
|
||||||
ticks_and_stakes: &mut [(u64, u64)],
|
ticks_and_stakes: &mut [(u64, u64)],
|
||||||
supermajority_stake: u64,
|
supermajority_stake: u64,
|
||||||
) -> Option<u64> {
|
) -> Option<u64> {
|
||||||
let last_ids = self.tick_hash_queue.read().unwrap();
|
let hash_queue = self.tick_hash_queue.read().unwrap();
|
||||||
last_ids.get_confirmation_timestamp(ticks_and_stakes, supermajority_stake)
|
hash_queue.get_confirmation_timestamp(ticks_and_stakes, supermajority_stake)
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Tell the bank which Entry IDs exist on the ledger. This function
|
/// Tell the bank which Entry IDs exist on the ledger. This function
|
||||||
|
@ -389,11 +389,11 @@ impl Bank {
|
||||||
max_age: usize,
|
max_age: usize,
|
||||||
error_counters: &mut ErrorCounters,
|
error_counters: &mut ErrorCounters,
|
||||||
) -> Vec<Result<()>> {
|
) -> Vec<Result<()>> {
|
||||||
let last_ids = self.tick_hash_queue.read().unwrap();
|
let hash_queue = self.tick_hash_queue.read().unwrap();
|
||||||
txs.iter()
|
txs.iter()
|
||||||
.zip(lock_results.into_iter())
|
.zip(lock_results.into_iter())
|
||||||
.map(|(tx, lock_res)| {
|
.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;
|
error_counters.reserve_last_id += 1;
|
||||||
Err(BankError::LastIdNotFound)
|
Err(BankError::LastIdNotFound)
|
||||||
} else {
|
} else {
|
||||||
|
@ -791,11 +791,6 @@ impl Bank {
|
||||||
pub fn epoch_height(&self) -> u64 {
|
pub fn epoch_height(&self) -> u64 {
|
||||||
self.slot_height() / self.slots_per_epoch()
|
self.slot_height() / self.slots_per_epoch()
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(test)]
|
|
||||||
pub fn last_ids(&self) -> &RwLock<HashQueue> {
|
|
||||||
&self.tick_hash_queue
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
|
|
|
@ -120,13 +120,6 @@ impl HashQueue {
|
||||||
}
|
}
|
||||||
None
|
None
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(test)]
|
|
||||||
pub fn clear(&mut self) {
|
|
||||||
self.entries = HashMap::new();
|
|
||||||
self.tick_height = 0;
|
|
||||||
self.last_hash = None;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
mod tests {
|
mod tests {
|
||||||
|
|
Loading…
Reference in New Issue