We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 250198e commit f1478f7Copy full SHA for f1478f7
packages/tendermint-rpc/src/comet38/adaptor/responses.ts
@@ -298,7 +298,7 @@ function decodeBlockResults(data: RpcBlockResultsResponse): responses.BlockResul
298
results: (data.txs_results || []).map(decodeTxData),
299
validatorUpdates: (data.validator_updates || []).map(decodeValidatorUpdate),
300
consensusUpdates: may(decodeConsensusParams, data.consensus_param_updates),
301
- finalizeBlockEvents: decodeEvents(data.finalize_block_events || [])
+ finalizeBlockEvents: decodeEvents(data.finalize_block_events || []),
302
};
303
}
304
0 commit comments