Skip to content

Commit

Permalink
Fix clippy for new rustc - next regeneration should be fixed when par…
Browse files Browse the repository at this point in the history
  • Loading branch information
bkontur committed Oct 5, 2024
1 parent 10a7a3a commit 394b882
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion relay-clients/client-kusama/src/codegen_runtime.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
//! THIS FILE WAS AUTOGENERATED USING parity-bridges-common::runtime-codegen
//! EXECUTED COMMAND: target/debug/runtime-codegen --from-node-url wss://kusama-rpc.polkadot.io

#[allow(dead_code, unused_imports, non_camel_case_types)]
#[allow(dead_code, unused_imports, non_camel_case_types, unreachable_patterns)]
#[allow(clippy::all)]
#[allow(rustdoc::broken_intra_doc_links)]
pub mod api {
Expand Down
2 changes: 1 addition & 1 deletion relay-clients/client-polkadot/src/codegen_runtime.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
//! THIS FILE WAS AUTOGENERATED USING parity-bridges-common::runtime-codegen
//! EXECUTED COMMAND: target/debug/runtime-codegen --from-node-url wss://dot-rpc.stakeworld.io

#[allow(dead_code, unused_imports, non_camel_case_types)]
#[allow(dead_code, unused_imports, non_camel_case_types, unreachable_patterns)]
#[allow(clippy::all)]
#[allow(rustdoc::broken_intra_doc_links)]
pub mod api {
Expand Down
2 changes: 1 addition & 1 deletion relay-clients/client-rococo/src/codegen_runtime.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
//! THIS FILE WAS AUTOGENERATED USING parity-bridges-common::runtime-codegen
//! EXECUTED COMMAND: target/debug/runtime-codegen --from-node-url wss://rococo-rpc.polkadot.io:443

#[allow(dead_code, unused_imports, non_camel_case_types)]
#[allow(dead_code, unused_imports, non_camel_case_types, unreachable_patterns)]
#[allow(clippy::all)]
#[allow(rustdoc::broken_intra_doc_links)]
pub mod api {
Expand Down
2 changes: 1 addition & 1 deletion relay-clients/client-westend/src/codegen_runtime.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
//! THIS FILE WAS AUTOGENERATED USING parity-bridges-common::runtime-codegen
//! EXECUTED COMMAND: target/debug/runtime-codegen --from-node-url wss://westend-rpc.polkadot.io:443

#[allow(dead_code, unused_imports, non_camel_case_types)]
#[allow(dead_code, unused_imports, non_camel_case_types, unreachable_patterns)]
#[allow(clippy::all)]
#[allow(rustdoc::broken_intra_doc_links)]
pub mod api {
Expand Down

0 comments on commit 394b882

Please sign in to comment.