Cleanup unused fn on rm_log (#999)

This commit is contained in:
Antioch Peverell 2018-04-23 20:46:06 -04:00 committed by Ignotus Peverell
parent ef304ee9c1
commit 46a7245ec1
2 changed files with 0 additions and 19 deletions

View file

@ -26,7 +26,6 @@ use core::core::{Block, BlockHeader};
use core::consensus::TargetError;
use core::core::target::Difficulty;
use grin_store::{self, option_to_not_found, to_key, Error, u64_to_key};
use util::LOGGER;
const STORE_SUBPATH: &'static str = "chain";

View file

@ -328,24 +328,6 @@ impl RemoveLog {
include_tuple(&self.removed, elmt) || include_tuple(&self.removed_tmp, elmt)
}
/// How many removed positions exist before this particular position
pub fn get_shift(&self, elmt: u64) -> usize {
let mut complete_list = self.removed.clone();
for e in &self.removed_tmp {
match self.removed.binary_search(&e) {
Ok(_) => continue,
Err(idx) => {
complete_list.insert(idx, *e);
}
}
}
let pos = match complete_list.binary_search(&(elmt, 0)) {
Ok(idx) => idx + 1,
Err(idx) => idx,
};
complete_list.split_at(pos).0.len()
}
/// Number of positions stored in the remove log.
pub fn len(&self) -> usize {
self.removed.len()