Skip to content

Revert "feat(core): log all variables" #138

Revert "feat(core): log all variables"

Revert "feat(core): log all variables" #138

Triggered via push September 7, 2023 04:10
Status Success
Total duration 8m 40s
Artifacts
This run and associated checks have been archived and are scheduled for deletion. Learn more about checks retention
deploy-transfer
8m 29s
deploy-transfer
Fit to window
Zoom out
Zoom in

Annotations

3 warnings
using `Result.or_else(|x| Err(y))`, which is more succinctly expressed as `map_err(|x| y)`: crates/ark-starknet/src/collection_manager.rs#L55
warning: using `Result.or_else(|x| Err(y))`, which is more succinctly expressed as `map_err(|x| y)` --> crates/ark-starknet/src/collection_manager.rs:55:23 | 55 | Err(_) => self | _______________________^ 56 | | .call_contract_helper( 57 | | contract_address, 58 | | "owner_of", ... | 63 | | .await 64 | | .or_else(|_| Err(anyhow!("Failed to get token owner"))), | |_______________________________________________________________________^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#bind_instead_of_map = note: `#[warn(clippy::bind_instead_of_map)]` on by default help: try | 55 ~ Err(_) => self 56 + .call_contract_helper( 57 + contract_address, 58 + "owner_of", 59 + token_id_low, 60 + token_id_high, 61 + effective_block_id, 62 + ) 63 ~ .await.map_err(|_| anyhow!("Failed to get token owner")), |
deploy-transfer
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
deploy-transfer
Your docker password is not masked. See https://github.com/aws-actions/amazon-ecr-login#docker-credentials for more information.