fix(pop-api): remove unused call #46
clippy
7 warnings
Details
Results
Message level | Amount |
---|---|
Internal compiler error | 0 |
Error | 0 |
Warning | 7 |
Note | 0 |
Help | 0 |
Versions
- rustc 1.76.0 (07dca489a 2024-02-04)
- cargo 1.76.0 (c84b36747 2024-01-18)
- clippy 0.1.76 (07dca48 2024-02-04)
Annotations
Check warning on line 373 in node/src/service.rs
github-actions / clippy
this function has too many arguments (14/7)
warning: this function has too many arguments (14/7)
--> node/src/service.rs:358:1
|
358 | / fn start_consensus(
359 | | client: Arc<ParachainClient>,
360 | | block_import: ParachainBlockImport,
361 | | prometheus_registry: Option<&Registry>,
... |
372 | | announce_block: Arc<dyn Fn(Hash, Option<Vec<u8>>) + Send + Sync>,
373 | | ) -> Result<(), sc_service::Error> {
| |__________________________________^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#too_many_arguments
= note: `#[warn(clippy::too_many_arguments)]` on by default
Check warning on line 49 in node/src/cli.rs
github-actions / clippy
large size difference between variants
warning: large size difference between variants
--> node/src/cli.rs:5:1
|
5 | / pub enum Subcommand {
6 | | /// Build a chain specification.
7 | | BuildSpec(sc_cli::BuildSpecCmd),
8 | |
... |
19 | | ImportBlocks(sc_cli::ImportBlocksCmd),
| | ------------------------------------- the second-largest variant contains at least 240 bytes
... |
39 | | Benchmark(frame_benchmarking_cli::BenchmarkCmd),
| | ----------------------------------------------- the largest variant contains at least 512 bytes
... |
48 | | Key(sc_cli::KeySubcommand),
49 | | }
| |_^ the entire enum is at least 512 bytes
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#large_enum_variant
= note: `#[warn(clippy::large_enum_variant)]` on by default
help: consider boxing the large fields to reduce the total size of the enum
|
39 | Benchmark(Box<frame_benchmarking_cli::BenchmarkCmd>),
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Check warning on line 191 in runtime/src/lib.rs
github-actions / clippy
this is a decimal constant
warning: this is a decimal constant
--> runtime/src/lib.rs:191:16
|
191 | spec_version: 00_01_00,
| ^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#zero_prefixed_literal
= note: `#[warn(clippy::zero_prefixed_literal)]` on by default
help: if you mean to use a decimal constant, remove the `0` to avoid confusion
|
191 | spec_version: 1_00,
| ~~~~
help: if you mean to use an octal constant, use `0o`
|
191 | spec_version: 0o1_00,
| ~~~~~~
Check warning on line 6 in runtime/src/extensions.rs
github-actions / clippy
this import is redundant
warning: this import is redundant
--> runtime/src/extensions.rs:6:1
|
6 | use log;
| ^^^^^^^^ help: remove it entirely
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#single_component_path_imports
= note: `#[warn(clippy::single_component_path_imports)]` on by default
Check warning on line 25 in pop-api/src/lib.rs
github-actions / clippy
type alias `MaxTips` is never used
warning: type alias `MaxTips` is never used
--> pop-api/src/lib.rs:25:6
|
25 | type MaxTips = u32;
| ^^^^^^^
Check warning on line 24 in pop-api/src/lib.rs
github-actions / clippy
type alias `KeyLimit` is never used
warning: type alias `KeyLimit` is never used
--> pop-api/src/lib.rs:24:6
|
24 | type KeyLimit = u32;
| ^^^^^^^^
|
= note: `#[warn(dead_code)]` on by default
Check warning on line 9 in pop-api/src/lib.rs
github-actions / clippy
this import is redundant
warning: this import is redundant
--> pop-api/src/lib.rs:9:1
|
9 | use scale;
| ^^^^^^^^^^ help: remove it entirely
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#single_component_path_imports
= note: `#[warn(clippy::single_component_path_imports)]` on by default