mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-20 11:41:02 +00:00
* patch branch * patch bis * Add missing client method. * unpatch * update Substrate Co-authored-by: parity-processbot <>
This commit is contained in:
Generated
+154
-152
File diff suppressed because it is too large
Load Diff
@@ -430,6 +430,22 @@ impl sc_client_api::StorageProvider<Block, crate::FullBackend> for Client {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn child_storage_keys_iter<'a>(
|
||||||
|
&self,
|
||||||
|
id: &BlockId<Block>,
|
||||||
|
child_info: ChildInfo,
|
||||||
|
prefix: Option<&'a StorageKey>,
|
||||||
|
start_key: Option<&StorageKey>,
|
||||||
|
) -> sp_blockchain::Result<KeyIterator<'a, <crate::FullBackend as sc_client_api::Backend<Block>>::State, Block>> {
|
||||||
|
with_client! {
|
||||||
|
self,
|
||||||
|
client,
|
||||||
|
{
|
||||||
|
client.child_storage_keys_iter(id, child_info, prefix, start_key)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
fn child_storage_hash(
|
fn child_storage_hash(
|
||||||
&self,
|
&self,
|
||||||
id: &BlockId<Block>,
|
id: &BlockId<Block>,
|
||||||
|
|||||||
Reference in New Issue
Block a user