consensus: remove dead code in checkpointer

This was never used anywhere, not even by tests, but nothing noticed
because it had an #[allow(dead_code)].
This commit is contained in:
Henry de Valence 2020-09-11 12:43:20 -07:00
parent de2400031c
commit aa70db1867
1 changed files with 0 additions and 6 deletions

View File

@ -216,12 +216,6 @@ where
}
}
/// Return the checkpoint list for this verifier.
#[allow(dead_code)]
pub(crate) fn list(&self) -> &CheckpointList {
&self.checkpoint_list
}
/// Return the current verifier's progress.
///
/// If verification has not started yet, returns `BeforeGenesis`,