From 63d17279975e7c552e9ceba78e982431a4919d64 Mon Sep 17 00:00:00 2001 From: Akosh Farkash Date: Mon, 26 Feb 2024 19:28:32 +0000 Subject: [PATCH] FIX: Typo --- fendermint/abci/src/application.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fendermint/abci/src/application.rs b/fendermint/abci/src/application.rs index abd5f3562..1e9b0fe18 100644 --- a/fendermint/abci/src/application.rs +++ b/fendermint/abci/src/application.rs @@ -201,7 +201,7 @@ where fn log_error(res: AbciResult) -> AbciResult { if let Err(ref e) = res { - tracing::error!("failed execute ABCI request: {e:#}"); + tracing::error!("failed to execute ABCI request: {e:#}"); } res }