diff --git a/substrate/core/client/db/src/light.rs b/substrate/core/client/db/src/light.rs index dea53f4ff8..1efe3b749e 100644 --- a/substrate/core/client/db/src/light.rs +++ b/substrate/core/client/db/src/light.rs @@ -60,14 +60,6 @@ pub struct LightStorage { cache: DbCacheSync, } -#[derive(Clone, PartialEq, Debug)] -struct BestAuthorities { - /// 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>, -} - impl LightStorage where Block: BlockT,