From 4a40b37da84839280ce66f1a8f77b9493ea5be5a Mon Sep 17 00:00:00 2001 From: Tao Zhu Date: Tue, 17 Aug 2021 17:49:31 -0500 Subject: [PATCH] fix typo --- ledger/src/block_cost_limits.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ledger/src/block_cost_limits.rs b/ledger/src/block_cost_limits.rs index e6d1d1474a1a4e..b4967b86221f5f 100644 --- a/ledger/src/block_cost_limits.rs +++ b/ledger/src/block_cost_limits.rs @@ -23,7 +23,7 @@ pub const fn account_cost_max() -> u64 { } pub const fn compute_unit_to_us_ratio() -> u64 { - (MAX_INSTRUCTION_COST / AVG_INSTRUCTION_TIME_US) * SYSTEM_PARALLELISM; + (MAX_INSTRUCTION_COST / AVG_INSTRUCTION_TIME_US) * SYSTEM_PARALLELISM } pub const fn signature_cost() -> u64 {