From 382da9107058cb04c9dda5f562feb844097a9bfc Mon Sep 17 00:00:00 2001 From: Diego Ximenes Date: Fri, 13 Dec 2024 14:35:09 -0300 Subject: [PATCH] Fixes typo --- arbitrator/tools/stylus_benchmark/src/benchmark.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arbitrator/tools/stylus_benchmark/src/benchmark.rs b/arbitrator/tools/stylus_benchmark/src/benchmark.rs index 6af9a05920..8e3085b55c 100644 --- a/arbitrator/tools/stylus_benchmark/src/benchmark.rs +++ b/arbitrator/tools/stylus_benchmark/src/benchmark.rs @@ -71,7 +71,7 @@ fn run(compiled_module: Vec) -> (Duration, Ink) { let result = msg .benchmark - .expect("toggle_measurement block likely not present in program"); + .expect("toggle_benchmark block likely not present in program"); let elapsed = result.elapsed.expect("elapsed"); let ink = result.ink_total.expect("ink"); (elapsed, ink)