From 00410e636f0dafa0f13a7de3cb3893110a1b5806 Mon Sep 17 00:00:00 2001 From: Wei Tang Date: Mon, 10 Dec 2018 15:05:28 +0800 Subject: [PATCH] Remove BestAuthorities (#1238) --- substrate/core/client/db/src/light.rs | 8 -------- 1 file changed, 8 deletions(-) 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,