Obtain Cache Manager Addr from ArbWasmCache Precompile + Informational Message About Cache on Deploy #246
Annotations
5 warnings
deref which would be done by auto-deref:
check/src/verify.rs#L91
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
|
deref which would be done by auto-deref:
check/src/verify.rs#L69
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
|
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, 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/
|
(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/
|