Skip to content
Snippets Groups Projects
Commit 6c8946ae authored by thiolliere's avatar thiolliere Committed by GitHub
Browse files

fix tracker repeat writes (#9653)

parent 2fa683da
No related merge requests found
......@@ -538,7 +538,7 @@ impl<B: BlockT> StateBackend<HashFor<B>> for BenchmarkingState<B> {
if tracker.writes > 0 {
writes += 1;
repeat_writes += tracker.reads - 1;
repeat_writes += tracker.writes - 1;
}
}
});
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment