From 397815076e724f1f327033d79cec30af9c7c82f9 Mon Sep 17 00:00:00 2001 From: raychu86 <14917648+raychu86@users.noreply.github.com> Date: Thu, 21 Nov 2024 12:21:34 -0500 Subject: [PATCH] Clippy --- synthesizer/process/src/cost.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/synthesizer/process/src/cost.rs b/synthesizer/process/src/cost.rs index 381b9869ef..4f75e9d2c7 100644 --- a/synthesizer/process/src/cost.rs +++ b/synthesizer/process/src/cost.rs @@ -87,7 +87,7 @@ pub fn execution_cost_v1(process: &Process, execution: &Execution // Get the finalize cost for the root transition. let stack = process.get_stack(transition.program_id())?; - let finalize_cost = cost_in_microcredits_v1(&stack, transition.function_name())?; + let finalize_cost = cost_in_microcredits_v1(stack, transition.function_name())?; // Compute the total cost in microcredits. let total_cost = storage_cost