Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion subxt/src/backend/legacy/descendant_streams.rs
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ impl<T: Config> Stream for StorageFetchDescendantValuesStream<T> {
Poll::Ready(Ok(None)) => {
// Clear keys once result comes back.
this.keys = Vec::new();
// But no results back for these keys we we just skip them.
// But no results back for these keys we just skip them.
continue;
}
Poll::Ready(Err(e)) => {
Expand Down
Loading