From 9a0a81668db55ef010a94bd4ec0dfed51db5c9d0 Mon Sep 17 00:00:00 2001 From: Elias Rad <146735585+nnsW3@users.noreply.github.com> Date: Wed, 7 Aug 2024 22:57:17 +0300 Subject: [PATCH] fix transaction_executor.rs --- crates/blockifier/src/blockifier/transaction_executor.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/blockifier/src/blockifier/transaction_executor.rs b/crates/blockifier/src/blockifier/transaction_executor.rs index 2d7bfa857d..6bc730dde0 100644 --- a/crates/blockifier/src/blockifier/transaction_executor.rs +++ b/crates/blockifier/src/blockifier/transaction_executor.rs @@ -240,7 +240,7 @@ impl TransactionExecutor { for _ in 0..self.config.concurrency_config.n_workers { let worker_executor = Arc::clone(&worker_executor); s.spawn(move || { - // Making sure that the program will abort if a panic accured while halting the + // Making sure that the program will abort if a panic occurs while halting the // scheduler. let abort_guard = AbortIfPanic; // If a panic is not handled or the handling logic itself panics, then we abort