This repository has been archived by the owner on Apr 1, 2024. It is now read-only.
Bump serde_json from 1.0.104 to 1.0.105 (#82) #208
This run and associated checks have been archived and are scheduled for deletion.
Learn more about checks retention
Annotations
3 warnings
use of `expect` followed by a function call:
src/hunter.rs#L176
warning: use of `expect` followed by a function call
--> src/hunter.rs:176:65
|
176 | util::crowdloan_id_of(self.fund_index_at(&block_hash).await?.expect(&format!(
| __________________________________________________________________________^
177 | | "no existing crowdloan found for parachain({})",
178 | | self.configuration.bid.para_id,
179 | | )))
| |______________^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#expect_fun_call
= note: `#[warn(clippy::expect_fun_call)]` on by default
help: try
|
176 ~ util::crowdloan_id_of(self.fund_index_at(&block_hash).await?.unwrap_or_else(|| panic!("no existing crowdloan found for parachain({})",
177 ~ self.configuration.bid.para_id)))
|
|
use of `expect` followed by a function call:
src/hunter.rs#L176
warning: use of `expect` followed by a function call
--> src/hunter.rs:176:65
|
176 | util::crowdloan_id_of(self.fund_index_at(&block_hash).await?.expect(&format!(
| __________________________________________________________________________^
177 | | "no existing crowdloan found for parachain({})",
178 | | self.configuration.bid.para_id,
179 | | )))
| |______________^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#expect_fun_call
= note: `#[warn(clippy::expect_fun_call)]` on by default
help: try
|
176 ~ util::crowdloan_id_of(self.fund_index_at(&block_hash).await?.unwrap_or_else(|| panic!("no existing crowdloan found for parachain({})",
177 ~ self.configuration.bid.para_id)))
|
|
Task cargo clippy
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/clippy-check@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|