AcctIdx: cleanup trait (#21522)

This commit is contained in:
Jeff Washington (jwash)
2021-12-01 12:19:06 -06:00
committed by GitHub
parent f598ee696c
commit 1eefdeba85

View File

@ -97,9 +97,7 @@ impl ScanConfig {
pub(crate) type AccountMapEntry<T> = Arc<AccountMapEntryInner<T>>; pub(crate) type AccountMapEntry<T> = Arc<AccountMapEntryInner<T>>;
pub trait IsCached: pub trait IsCached {
'static + Clone + Debug + PartialEq + ZeroLamport + Copy + Default + Sync + Send
{
fn is_cached(&self) -> bool; fn is_cached(&self) -> bool;
} }