Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Port "rpc: Fix deserialization of /block_results response when some tx results are non-ok" (tendermint-rs#1391) #24

Merged
merged 1 commit into from
Apr 25, 2024

Port "rpc: Fix deserialization of /block_results response when some t…

ac3e8de
Select commit
Loading
Failed to load commit list.
Sign in for the full log view
Merged

Port "rpc: Fix deserialization of /block_results response when some tx results are non-ok" (tendermint-rs#1391) #24

Port "rpc: Fix deserialization of /block_results response when some t…
ac3e8de
Select commit
Loading
Failed to load commit list.
GitHub Actions / clippy succeeded Mar 14, 2024 in 0s

reviewdog [clippy] report

reported by reviewdog 🐶

Findings (0)
Filtered Findings (1)

kvstore-test/tests/cometbft.rs|347 col 43| error: accessing first element with decoded_tx_split.get(0)
--> kvstore-test/tests/cometbft.rs:347:43
|
347 | ... let key = decoded_tx_split.get(0).unwrap();
| ^^^^^^^^^^^^^^^^^^^^^^^ help: try: decoded_tx_split.first()
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#get_first
= note: -D clippy::get-first implied by -D warnings
= help: to override -D warnings add #[allow(clippy::get_first)]