Standalone Command to Activate Already Deployed Programs #251
Annotations
13 warnings
`to_string` applied to a type that implements `Display` in `write!` args:
check/src/main.rs#L272
warning: `to_string` applied to a type that implements `Display` in `write!` args
--> check/src/main.rs:272:28
|
272 | self.common_cfg.to_string(),
| ^^^^^^^^^^^^ help: remove this
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#to_string_in_format_args
|
`to_string` applied to a type that implements `Display` in `format!` args:
check/src/main.rs#L260
warning: `to_string` applied to a type that implements `Display` in `format!` args
--> check/src/main.rs:260:84
|
260 | Some(path) => format!("--keystore-password-path={}", path.display().to_string()),
| ^^^^^^^^^^^^ help: remove this
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#to_string_in_format_args
|
`to_string` applied to a type that implements `Display` in `format!` args:
check/src/main.rs#L248
warning: `to_string` applied to a type that implements `Display` in `format!` args
--> check/src/main.rs:248:78
|
248 | Some(path) => format!("--private-key-path={}", path.display().to_string()),
| ^^^^^^^^^^^^ help: remove this
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#to_string_in_format_args
|
`to_string` applied to a type that implements `Display` in `write!` args:
check/src/main.rs#L233
warning: `to_string` applied to a type that implements `Display` in `write!` args
--> check/src/main.rs:233:22
|
233 | self.auth.to_string(),
| ^^^^^^^^^^^^ help: remove this
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#to_string_in_format_args
|
`to_string` applied to a type that implements `Display` in `write!` args:
check/src/main.rs#L232
warning: `to_string` applied to a type that implements `Display` in `write!` args
--> check/src/main.rs:232:30
|
232 | self.check_config.to_string(),
| ^^^^^^^^^^^^ help: remove this
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#to_string_in_format_args
|
`to_string` applied to a type that implements `Display` in `format!` args:
check/src/main.rs#L212
warning: `to_string` applied to a type that implements `Display` in `format!` args
--> check/src/main.rs:212:71
|
212 | Some(path) => format!("--wasm-file={}", path.display().to_string()),
| ^^^^^^^^^^^^ help: remove this
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#to_string_in_format_args
|
`to_string` applied to a type that implements `Display` in `write!` args:
check/src/main.rs#L210
warning: `to_string` applied to a type that implements `Display` in `write!` args
--> check/src/main.rs:210:28
|
210 | self.common_cfg.to_string(),
| ^^^^^^^^^^^^ help: remove this
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#to_string_in_format_args
= note: `#[warn(clippy::to_string_in_format_args)]` on by default
|
deref which would be done by auto-deref:
check/src/verify.rs#L97
warning: deref which would be done by auto-deref
--> check/src/verify.rs:97:37
|
97 | 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
|
deref which would be done by auto-deref:
check/src/verify.rs#L75
warning: deref which would be done by auto-deref
--> check/src/verify.rs:75:65
|
75 | 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
|
this expression creates a reference which is immediately dereferenced by the compiler:
check/src/docker.rs#L44
warning: this expression creates a reference which is immediately dereferenced by the compiler
--> check/src/docker.rs:44:38
|
44 | let name = version_to_image_name(&version);
| ^^^^^^^^ help: change this to: `version`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow
= note: `#[warn(clippy::needless_borrow)]` on by default
|
using `clone` on type `Address` which implements the `Copy` trait:
check/src/cache.rs#L59
warning: using `clone` on type `Address` which implements the `Copy` trait
--> check/src/cache.rs:59:25
|
59 | let cache_manager = cache_manager_addrs.last().unwrap().clone();
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try dereferencing it: `*cache_manager_addrs.last().unwrap()`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#clone_on_copy
= note: `#[warn(clippy::clone_on_copy)]` on by default
|
(x86_64-unknown-linux-gnu, stable)
The following actions uses Node.js version which is deprecated and will be forced to run on node20: actions/checkout@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|
(x86_64-unknown-linux-gnu, nightly)
The following actions uses Node.js version which is deprecated and will be forced to run on node20: actions/checkout@v3. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
|