mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 14:37:57 +00:00
introduce remote-tests for pallet-bags-list (#10036)
* make a few primitives in bags-list public * push new stuff * update * update log target * bring remote tests here * revert pub * Update frame/bags-list/remote-tests/Cargo.toml Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com> * some rev commnets * Fix * cleanup * Update Cargo.lock Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com> Co-authored-by: Shawn Tabrizi <shawntabrizi@gmail.com>
This commit is contained in:
@@ -385,7 +385,7 @@ impl<B: BlockT> Builder<B> {
|
||||
};
|
||||
|
||||
for prefix in &self.hashed_prefixes {
|
||||
debug!(
|
||||
info!(
|
||||
target: LOG_TARGET,
|
||||
"adding data for hashed prefix: {:?}",
|
||||
HexDisplay::from(prefix)
|
||||
@@ -397,7 +397,7 @@ impl<B: BlockT> Builder<B> {
|
||||
|
||||
for key in &self.hashed_keys {
|
||||
let key = StorageKey(key.to_vec());
|
||||
debug!(target: LOG_TARGET, "adding data for hashed key: {:?}", HexDisplay::from(&key));
|
||||
info!(target: LOG_TARGET, "adding data for hashed key: {:?}", HexDisplay::from(&key));
|
||||
let value = self.rpc_get_storage(key.clone(), Some(at)).await?;
|
||||
keys_and_values.push((key, value));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user