Remove depenendcy on sc-consensus-slots (#4321)

This commit is contained in:
Tomasz Drwięga
2019-12-09 23:37:33 +01:00
committed by Gavin Wood
parent a868fcbbbf
commit 638e32fa8f
7 changed files with 28 additions and 28 deletions
@@ -181,3 +181,20 @@ impl<Block: BlockT> CanAuthorWith<Block> for AlwaysCanAuthor {
Ok(())
}
}
/// A type from which a slot duration can be obtained.
pub trait SlotData {
/// Gets the slot duration.
fn slot_duration(&self) -> u64;
/// The static slot key
const SLOT_KEY: &'static [u8];
}
impl SlotData for u64 {
fn slot_duration(&self) -> u64 {
*self
}
const SLOT_KEY: &'static [u8] = b"aura_slot_duration";
}