We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7ca50bc commit b470156Copy full SHA for b470156
src/ledger/database/rocksdb.zig
@@ -327,7 +327,7 @@ pub fn RocksDB(comptime column_families: []const ColumnFamily) type {
327
pub fn nextValue(self: *@This()) anyerror!?cf.Value {
328
const entry = try callRocks(self.logger, rocks.Iterator.next, .{&self.inner});
329
return if (entry) |kv|
330
- try key_serializer.deserialize(cf.Value, self.allocator, kv[1].data)
+ try value_serializer.deserialize(cf.Value, self.allocator, kv[1].data)
331
else
332
null;
333
}
0 commit comments