Substrate companion for change slot duration fetching (#4556)

* Substrate companion for change slot duration fetching

https://github.com/paritytech/substrate/pull/10509

* Fix bridges

* update lockfile for substrate

Co-authored-by: parity-processbot <>
This commit is contained in:
Bastian Köcher
2021-12-20 21:22:29 +01:00
committed by GitHub
parent 42964d514a
commit a805a1a045
3 changed files with 170 additions and 171 deletions
+168 -169
View File
File diff suppressed because it is too large Load Diff
@@ -207,7 +207,7 @@ where
)?;
let justification_import = grandpa_block_import.clone();
let babe_config = sc_consensus_babe::Config::get_or_compute(&*client)?;
let babe_config = sc_consensus_babe::Config::get(&*client)?;
let (block_import, babe_link) =
sc_consensus_babe::block_import(babe_config.clone(), grandpa_block_import, client.clone())?;
+1 -1
View File
@@ -457,7 +457,7 @@ where
let justification_import = grandpa_block_import.clone();
let babe_config = babe::Config::get_or_compute(&*client)?;
let babe_config = babe::Config::get(&*client)?;
let (block_import, babe_link) =
babe::block_import(babe_config.clone(), grandpa_block_import, client.clone())?;