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

renamed files in forwarder & forwarder-legacy #1645

Merged
merged 3 commits into from
May 23, 2024

fmt

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

renamed files in forwarder & forwarder-legacy #1645

fmt
23f4129
Select commit
Loading
Failed to load commit list.
GitHub Actions / clippy succeeded May 23, 2024 in 0s

reviewdog [clippy] report

reported by reviewdog 🐶

Findings (0)
Filtered Findings (3)

contracts/feature-tests/abi-tester/tests/abi_tester_abi_test.rs|73 col 9| warning: variable does not need to be mutable
--> contracts/feature-tests/abi-tester/tests/abi_tester_abi_test.rs:73:9
|
73 | let mut blockchain = ScenarioWorld::new();
| ----^^^^^^^^^^
| |
| help: remove this mut
|
= note: #[warn(unused_mut)] on by default
framework/scenario/tests/scenarios_self_test.rs|6 col 9| warning: variable does not need to be mutable
--> framework/scenario/tests/scenarios_self_test.rs:6:9
|
6 | let mut blockchain = ScenarioWorld::new();
| ----^^^^^^^^^^
| |
| help: remove this mut
|
= note: #[warn(unused_mut)] on by default
framework/scenario/tests/scenarios_self_test.rs|6 col 5| warning: returning the result of a let binding from a block
--> framework/scenario/tests/scenarios_self_test.rs:7:5
|
6 | let mut blockchain = ScenarioWorld::new();
| ------------------------------------------ unnecessary let binding
7 | blockchain
| ^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#let_and_return
= note: #[warn(clippy::let_and_return)] on by default
help: return the expression directly
|
6 ~
7 ~ ScenarioWorld::new()
|