From f1478f7b9c5aa0558214e27492bb99c881e5de64 Mon Sep 17 00:00:00 2001 From: "autofix-ci[bot]" <114827586+autofix-ci[bot]@users.noreply.github.com> Date: Thu, 12 Jun 2025 13:07:21 +0000 Subject: [PATCH] [autofix.ci] apply automated fixes --- packages/tendermint-rpc/src/comet38/adaptor/responses.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/tendermint-rpc/src/comet38/adaptor/responses.ts b/packages/tendermint-rpc/src/comet38/adaptor/responses.ts index cb369bef..b344d6bb 100644 --- a/packages/tendermint-rpc/src/comet38/adaptor/responses.ts +++ b/packages/tendermint-rpc/src/comet38/adaptor/responses.ts @@ -298,7 +298,7 @@ function decodeBlockResults(data: RpcBlockResultsResponse): responses.BlockResul results: (data.txs_results || []).map(decodeTxData), validatorUpdates: (data.validator_updates || []).map(decodeValidatorUpdate), consensusUpdates: may(decodeConsensusParams, data.consensus_param_updates), - finalizeBlockEvents: decodeEvents(data.finalize_block_events || []) + finalizeBlockEvents: decodeEvents(data.finalize_block_events || []), }; }