We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent afbe6bf commit 05bb5e6Copy full SHA for 05bb5e6
light-client-lib/src/storage/db/native_rocksdb.rs
@@ -541,8 +541,8 @@ impl StorageHighLevelOperations for Storage {
541
))
542
.take_while(|(key, _)| take_while(key))
543
.filter_map(|(key, value)| filter_map(&key).map(|v| (v.into_boxed_slice(), value)))
544
- .take(limit)
545
.skip(skip)
+ .take(limit)
546
.map(|(key, value)| (key.to_vec(), value.to_vec()))
547
.collect()
548
}
0 commit comments