* Add BlockBackend::requires_full_sync() implementation

* do not specify --pruning explicitly

* update lockfile for {"substrate"}

* Please re-run the CI

* Please re-run the CI

Co-authored-by: Roman Gafiyatullin <rg@rgmbp-16-m1.lan>
Co-authored-by: parity-processbot <>
This commit is contained in:
Roman Gafiyatullin
2022-05-06 14:33:06 +03:00
committed by GitHub
parent 48fb8bfb4e
commit d9f6c206a9
3 changed files with 183 additions and 174 deletions
+10
View File
@@ -381,6 +381,16 @@ impl sc_client_api::BlockBackend<Block> for Client {
}
}
}
fn requires_full_sync(&self) -> bool {
with_client! {
self,
client,
{
client.requires_full_sync()
}
}
}
}
impl sc_client_api::StorageProvider<Block, crate::FullBackend> for Client {