Provisioner polkadot companion (#1940)

* Provisioner companion changes

* update substrate commit hash

* Update Substrate & Polkadot

Co-authored-by: Bastian Köcher <info@kchr.de>
This commit is contained in:
alexgparity
2022-12-03 21:07:15 +01:00
committed by GitHub
parent c3df7db394
commit 04e236fd08
6 changed files with 269 additions and 276 deletions
@@ -65,8 +65,10 @@ where
.await
.map_err(|e| e.to_string())?;
let inherent_data =
inherent_data_providers.create_inherent_data().map_err(|e| format!("{:?}", e))?;
let inherent_data = inherent_data_providers
.create_inherent_data()
.await
.map_err(|e| format!("{:?}", e))?;
let block = Block::new(block_params.header.clone(), inner_body);
@@ -125,6 +125,7 @@ where
inherent_data_providers
.create_inherent_data()
.await
.map_err(|e| {
tracing::error!(
target: LOG_TARGET,