[MEX-589] Update deployer sc impl #4282
actions.yml
on: pull_request
Contracts
/
Wasm tests
7m 39s
Contracts
/
Test Coverage
3m 51s
Contracts
/
Rust tests
1m 17s
Contracts
/
Clippy linter check
39s
Annotations
4 warnings
[clippy] dex/proxy-deployer/tests/proxy_deployer_farm_staking_tests.rs#L219:
dex/proxy-deployer/tests/proxy_deployer_farm_staking_tests.rs#L219
warning: used `assert_eq!` with a literal bool
--> dex/proxy-deployer/tests/proxy_deployer_farm_staking_tests.rs:219:13
|
219 | assert_eq!(is_blacklisted, false);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#bool_assert_comparison
= note: `#[warn(clippy::bool_assert_comparison)]` on by default
help: replace it with `assert!(..)`
|
219 - assert_eq!(is_blacklisted, false);
219 + assert!(!is_blacklisted);
|
|
[clippy] dex/fuzz/src/fuzz_data.rs#L404:
dex/fuzz/src/fuzz_data.rs#L404
warning: this expression creates a reference which is immediately dereferenced by the compiler
--> dex/fuzz/src/fuzz_data.rs:404:18
|
404 | Some(&owner_addr),
| ^^^^^^^^^^^ help: change this to: `owner_addr`
|
= 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
|
[clippy] dex/fuzz/src/fuzz_data.rs#L409:
dex/fuzz/src/fuzz_data.rs#L409
warning: this expression creates a reference which is immediately dereferenced by the compiler
--> dex/fuzz/src/fuzz_data.rs:409:25
|
409 | .execute_tx(&owner_addr, ×tamp_oracle_wrapper, &rust_zero, |sc| {
| ^^^^^^^^^^^ help: change this to: `owner_addr`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow
|
Deprecation notice: v1, v2, and v3 of the artifact actions
The following artifacts were uploaded using a version of actions/upload-artifact that is scheduled for deprecation: "coverage", "mxpy_report", "report", "report-markdown".
Please update your workflow to use v4 of the artifact actions.
Learn more: https://github.blog/changelog/2024-04-16-deprecation-notice-v3-of-the-artifact-actions/
|
Artifacts
Produced during runtime
Name | Size | |
---|---|---|
coverage
|
27 KB |
|
mxpy_report
|
46.7 KB |
|
report
|
3.33 KB |
|
report-markdown
|
2.54 KB |
|