Remove unused SignatureConfirmationStatus (#26124)

This commit is contained in:
Brooks Prumo 2022-06-22 07:41:22 -05:00 committed by GitHub
parent 97bd81a32b
commit 31c9b03049
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 7 deletions

View File

@ -34,13 +34,6 @@ type SlotDeltaMap<T> = HashMap<Slot, Status<T>>;
// construct a new one. Usually derived from a status cache's `SlotDeltaMap`
pub type SlotDelta<T> = (Slot, bool, Status<T>);
#[derive(Debug, PartialEq)]
pub struct SignatureConfirmationStatus<T> {
pub slot: Slot,
pub confirmations: usize,
pub status: T,
}
#[derive(Clone, Debug, AbiExample)]
pub struct StatusCache<T: Serialize + Clone> {
cache: KeyStatusMap<T>,