Remove BestAuthorities (#1238)

This commit is contained in:
Wei Tang
2018-12-10 15:05:28 +08:00
committed by Svyatoslav Nikolsky
parent ed5b78eaf0
commit 00410e636f
-8
View File
@@ -60,14 +60,6 @@ pub struct LightStorage<Block: BlockT> {
cache: DbCacheSync<Block>,
}
#[derive(Clone, PartialEq, Debug)]
struct BestAuthorities<N> {
/// first block, when this set became actual
valid_from: N,
/// None means that we do not know the set starting from `valid_from` block
authorities: Option<Vec<AuthorityId>>,
}
impl<Block> LightStorage<Block>
where
Block: BlockT,