Skip to content

Commit

Permalink
chore: fix clippy warning
Browse files Browse the repository at this point in the history
  • Loading branch information
lklimek committed Mar 22, 2024
1 parent b081ce3 commit 45f07c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion abci/src/application.rs
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ fn serialize_response_for_logging(response: &response::Value) -> String {
}
}

fn exec_tx_results_to_string(tx_results: &Vec<ExecTxResult>) -> Vec<String> {
fn exec_tx_results_to_string(tx_results: &[ExecTxResult]) -> Vec<String> {
tx_results
.iter()
.map(|tx_result| {
Expand Down

0 comments on commit 45f07c1

Please sign in to comment.