Skip to content

Commit

Permalink
Horizontal lines
Browse files Browse the repository at this point in the history
  • Loading branch information
dadepo committed Dec 20, 2024
1 parent 3b8792b commit bcf058d
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions src/ledger/fuzz.zig
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,13 @@ fn dbDelete(
max_actions: ?usize,
) !void {
const key = random.int(u32);
try performDbAction("RocksDb.delete", RocksDb.delete, .{ db, cf1, key }, count, max_actions);
try performDbAction(
"RocksDb.delete",
RocksDb.delete,
.{ db, cf1, key },
count,
max_actions,
);
}

fn dbDeleteFilesInRange(
Expand Down Expand Up @@ -240,7 +246,13 @@ fn dbCount(
count: *std.atomic.Value(u64),
max_actions: ?usize,
) !void {
try performDbAction("RocksDb.count", RocksDb.count, .{ db, cf1 }, count, max_actions);
try performDbAction(
"RocksDb.count",
RocksDb.count,
.{ db, cf1 },
count,
max_actions,
);
}

fn dbContains(
Expand Down

0 comments on commit bcf058d

Please sign in to comment.