Skip to content

Commit

Permalink
Update node/core/parachains-inherent/src/lib.rs
Browse files Browse the repository at this point in the history
Co-authored-by: Bastian Köcher <info@kchr.de>
  • Loading branch information
alexgparity and bkchr committed Dec 1, 2022
1 parent 816c92d commit 8b9555d
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions node/core/parachains-inherent/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -129,11 +129,7 @@ impl<C: sp_blockchain::HeaderBackend<Block>> sp_inherents::InherentDataProvider
&self,
dst_inherent_data: &mut sp_inherents::InherentData,
) -> Result<(), sp_inherents::Error> {
let inherent_data = ParachainsInherentDataProvider::create(
self.client.clone(),
self.overseer.clone(),
self.parent,
)
let inherent_data = self.create()
.await
.map_err(|e| sp_inherents::Error::Application(Box::new(e)))?;

Expand Down

0 comments on commit 8b9555d

Please sign in to comment.