Major Changes to Reproducible Builds #201
GitHub Actions / clippy
succeeded
Jul 16, 2024 in 0s
clippy
2 warnings
Details
Results
Message level | Amount |
---|---|
Internal compiler error | 0 |
Error | 0 |
Warning | 2 |
Note | 0 |
Help | 0 |
Versions
- rustc 1.79.0 (129f3b996 2024-06-10)
- cargo 1.79.0 (ffa9cf99a 2024-06-03)
- clippy 0.1.79 (129f3b9 2024-06-10)
Annotations
Check warning on line 91 in check/src/verify.rs
github-actions / clippy
deref which would be done by auto-deref
warning: deref which would be done by auto-deref
--> check/src/verify.rs:91:37
|
91 | extract_compressed_wasm(&*result.input).len()
| ^^^^^^^^^^^^^^ help: try: `&result.input`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#explicit_auto_deref
Check warning on line 69 in check/src/verify.rs
github-actions / clippy
deref which would be done by auto-deref
warning: deref which would be done by auto-deref
--> check/src/verify.rs:69:65
|
69 | let tx_prelude = extract_program_evm_deployment_prelude(&*result.input);
| ^^^^^^^^^^^^^^ help: try: `&result.input`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#explicit_auto_deref
= note: `#[warn(clippy::explicit_auto_deref)]` on by default
Loading