From 45f07c11a79a172d6c88ee381864d7146469dffd Mon Sep 17 00:00:00 2001 From: Lukasz Klimek <842586+lklimek@users.noreply.github.com> Date: Fri, 22 Mar 2024 09:22:53 +0100 Subject: [PATCH] chore: fix clippy warning --- abci/src/application.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/abci/src/application.rs b/abci/src/application.rs index 065abdc..3081041 100644 --- a/abci/src/application.rs +++ b/abci/src/application.rs @@ -259,7 +259,7 @@ fn serialize_response_for_logging(response: &response::Value) -> String { } } -fn exec_tx_results_to_string(tx_results: &Vec) -> Vec { +fn exec_tx_results_to_string(tx_results: &[ExecTxResult]) -> Vec { tx_results .iter() .map(|tx_result| {