We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 816c92d commit 8b9555dCopy full SHA for 8b9555d
node/core/parachains-inherent/src/lib.rs
@@ -129,11 +129,7 @@ impl<C: sp_blockchain::HeaderBackend<Block>> sp_inherents::InherentDataProvider
129
&self,
130
dst_inherent_data: &mut sp_inherents::InherentData,
131
) -> Result<(), sp_inherents::Error> {
132
- let inherent_data = ParachainsInherentDataProvider::create(
133
- self.client.clone(),
134
- self.overseer.clone(),
135
- self.parent,
136
- )
+ let inherent_data = self.create()
137
.await
138
.map_err(|e| sp_inherents::Error::Application(Box::new(e)))?;
139
0 commit comments