Skip to content
This repository was archived by the owner on Nov 15, 2023. It is now read-only.
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix return type of start_collator
  • Loading branch information
seunlanlege committed Apr 26, 2020
commit dd1e21cb27e531d18ea48212fb2c5e0b0fe20e68
6 changes: 4 additions & 2 deletions collator/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,8 @@ where
para_id,
key,
build_parachain_context
)?.await
)?.await;
Ok(())
},
(false, _) => {
let (service, client, handles) = service::polkadot_new_full(
Expand All @@ -383,7 +384,8 @@ where
para_id,
key,
build_parachain_context,
)?.await
)?.await;
Ok(())
}
}
}
Expand Down