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:
parent
de2400031c
commit
aa70db1867
|
|
@ -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.
|
/// Return the current verifier's progress.
|
||||||
///
|
///
|
||||||
/// If verification has not started yet, returns `BeforeGenesis`,
|
/// If verification has not started yet, returns `BeforeGenesis`,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue