Skip to content
Snippets Groups Projects
Commit 40e6c752 authored by asynchronous rob's avatar asynchronous rob Committed by GitHub
Browse files

make start_aura bounds more lenient (#1189)

parent c36998ae
No related merge requests found
......@@ -155,10 +155,11 @@ pub fn start_aura<B, C, E, I, SO, Error>(
)
-> impl Future<Item=(),Error=()> where
B: Block,
C: Authorities<B, Error=Error> + ChainHead<B>,
C: Authorities<B> + ChainHead<B>,
E: Environment<B, Error=Error>,
E::Proposer: Proposer<B, Error=Error>,
I: BlockImport<B, Error=Error>,
I: BlockImport<B>,
Error: From<C::Error> + From<I::Error>,
SO: SyncOracle + Send + Clone,
DigestItemFor<B>: CompatibleDigestItem,
Error: ::std::error::Error + Send + 'static + From<::consensus_common::Error>,
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment