Skip to content
Merged
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: 0 additions & 2 deletions bencher/src/redundant_meter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ impl RedundantMeter {
}

let timestamp = frame_benchmarking::benchmarking::current_time();
frame_benchmarking::benchmarking::commit_db();
let (reads, repeat_reads, writes, repeat_writes) = frame_benchmarking::benchmarking::read_write_count();

let identifier: Vec<u8> = thread_rng()
Expand All @@ -61,7 +60,6 @@ impl RedundantMeter {
pub fn leaving_method(&mut self, identifier: Vec<u8>) {
if let Some(current) = &self.current {
if current.identifier.eq(&identifier) {
frame_benchmarking::benchmarking::commit_db();
let (reads, repeat_reads, writes, repeat_writes) = frame_benchmarking::benchmarking::read_write_count();
let timestamp = frame_benchmarking::benchmarking::current_time();

Expand Down