Skip to content

Release 0.1.0-alpha.1 #41

Release 0.1.0-alpha.1

Release 0.1.0-alpha.1 #41

GitHub Actions / clippy succeeded Jan 26, 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)]