Skip to content
Snippets Groups Projects
Commit 34b4cb83 authored by asynchronous rob's avatar asynchronous rob Committed by Sergey Pepyakin
Browse files

Fix some formatting grumbles (#501)

parent a19087eb
No related merge requests found
......@@ -160,7 +160,8 @@ impl Service {
) -> Service
where
A: LocalPolkadotApi + Send + Sync + 'static,
C: BlockchainEvents<Block> + ChainHead<Block> + BlockBody<Block> + bft::BlockImport<Block> + bft::Authorities<Block> + Send + Sync + 'static,
C: BlockchainEvents<Block> + ChainHead<Block> + BlockBody<Block>,
C: bft::BlockImport<Block> + bft::Authorities<Block> + Send + Sync + 'static,
N: Network + Collators + Send + 'static,
N::TableRouter: Send + 'static,
<N::Collation as IntoFuture>::Future: Send + 'static,
......
......@@ -268,8 +268,7 @@ impl<D, E, C, Err> Future for PrimedStatementProducer<D, E, C>
debug!(target: "consensus", "Claiming candidate {} available.", hash);
statements.extrinsic = Some(extrinsic);
statements.availability =
Some(GenericStatement::Available(hash));
statements.availability = Some(GenericStatement::Available(hash));
work.ensure_available = false;
}
......
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