Make ChainSpec implement Send (#5315)

This commit is contained in:
Bastian Köcher
2020-03-19 17:24:31 +01:00
committed by GitHub
parent 0cc54008c8
commit 1b1eea1590
4 changed files with 8 additions and 8 deletions
+1 -1
View File
@@ -38,7 +38,7 @@ pub async fn browser_configuration<G, E>(chain_spec: GenericChainSpec<G, E>)
-> Result<Configuration, Box<dyn std::error::Error>>
where
G: RuntimeGenesis + 'static,
E: Extension + 'static,
E: Extension + 'static + Send,
{
let name = chain_spec.name().to_string();