Skip to content

Commit

Permalink
rename
Browse files Browse the repository at this point in the history
  • Loading branch information
kariy committed May 14, 2024
1 parent 74029cb commit 4ce52fa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/katana/executor/benches/execution.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ use crate::utils::{envs, tx};

mod utils;

fn transact(c: &mut Criterion) {
fn executor_transact(c: &mut Criterion) {
let mut group = c.benchmark_group("Invoke.ERC20.transfer");
group.measurement_time(Duration::from_millis(200));
group.warm_up_time(Duration::from_millis(200));
Expand Down Expand Up @@ -54,7 +54,7 @@ fn blockifier(group: &mut BenchmarkGroup<'_, WallTime>) {
criterion_group! {
name = benches;
config = Criterion::default().with_profiler(PProfProfiler::new(100, Output::Flamegraph(None)));
targets = transact
targets = executor_transact
}

criterion_main!(benches);

0 comments on commit 4ce52fa

Please sign in to comment.