From e15235e2a363e5b00d4ad0a42d58420f56d6afeb Mon Sep 17 00:00:00 2001 From: Bryan Stitt Date: Fri, 7 Jul 2023 12:34:12 -0700 Subject: [PATCH] add CU cost for trace_callMany arbitrary cost. we should do some actual calculations --- web3_proxy/src/compute_units.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/web3_proxy/src/compute_units.rs b/web3_proxy/src/compute_units.rs index 0bd7b053..6f446f08 100644 --- a/web3_proxy/src/compute_units.rs +++ b/web3_proxy/src/compute_units.rs @@ -100,6 +100,7 @@ impl ComputeUnit { (_, "test") => 0, (_, "trace_block") => 24, (_, "trace_call") => 75, + (_, "trace_callMany") => 75 * 3, (_, "trace_filter") => 75, (_, "trace_get") => 17, (_, "trace_rawTransaction") => 75,