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
@@ -318,7 +318,7 @@ impl<G: RuntimeGenesis, E: serde::Serialize + Clone> ChainSpec<G, E> {
impl<G, E> crate::ChainSpec for ChainSpec<G, E>
where
G: RuntimeGenesis,
E: GetExtension + serde::Serialize + Clone,
E: GetExtension + serde::Serialize + Clone + Send,
{
fn boot_nodes(&self) -> &[String] {
ChainSpec::boot_nodes(self)