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

[WIP] p2p: add AsyncSecretConnection based on tokio #1464

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from

rustfmt

dff86ab
Select commit
Loading
Failed to load commit list.
Sign in for the full log view
Draft

[WIP] p2p: add AsyncSecretConnection based on tokio #1464

rustfmt
dff86ab
Select commit
Loading
Failed to load commit list.
GitHub Actions / clippy succeeded Aug 28, 2024 in 0s

reviewdog [clippy] report

reported by reviewdog 🐶

Findings (0)
Filtered Findings (1)

kvstore-test/tests/tendermint.rs|346 col 43| error: accessing first element with decoded_tx_split.get(0)
--> kvstore-test/tests/tendermint.rs:346:43
|
346 | ... 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)]