Add ability to iterate and visit event fields and storage values

This commit is contained in:
James Wilson
2025-12-15 16:37:17 +00:00
parent dfabd6609c
commit 4d47acd24b
3 changed files with 75 additions and 13 deletions
-13
View File
@@ -250,19 +250,6 @@ where
.await
.map_err(StorageError::CannotIterateValues)?;
// .map(move |kv| {
// let kv = match kv {
// Ok(kv) => kv,
// Err(e) => return Err(StorageError::StreamFailure(e)),
// };
// Ok(StorageKeyValue::new(
// info.clone(),
// types,
// kv.key.into(),
// kv.value,
// ))
// });
Ok(StorageEntries {
info,
stream,