mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 19:17:58 +00:00
ci: bump ci image for rust 1.70 (#14399)
* ci: bump ci image for rust 1.70 * ".git/.scripts/commands/update-ui/update-ui.sh" 1.70 * chore: ignore the new let_with_type_underscore lint --------- Co-authored-by: command-bot <>
This commit is contained in:
+1
-1
@@ -57,5 +57,5 @@ help: you might have meant to use the associated type
|
||||
| ~~~~~~~~~~~~~~~~
|
||||
help: consider importing this trait
|
||||
|
|
||||
1 | use frame_support::traits::PalletInfo;
|
||||
1 + use frame_support::traits::PalletInfo;
|
||||
|
|
||||
|
||||
@@ -30,7 +30,7 @@ error[E0412]: cannot find type `Event` in module `pallet`
|
||||
= note: this error originates in the macro `construct_runtime` (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||
help: consider importing one of these items
|
||||
|
|
||||
1 | use frame_support_test::Event;
|
||||
1 + use frame_support_test::Event;
|
||||
|
|
||||
1 | use frame_system::Event;
|
||||
1 + use frame_system::Event;
|
||||
|
|
||||
|
||||
+2
-2
@@ -30,7 +30,7 @@ error[E0412]: cannot find type `GenesisConfig` in module `pallet`
|
||||
= note: this error originates in the macro `construct_runtime` (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||
help: consider importing one of these items
|
||||
|
|
||||
1 | use frame_system::GenesisConfig;
|
||||
1 + use frame_system::GenesisConfig;
|
||||
|
|
||||
1 | use test_pallet::GenesisConfig;
|
||||
1 + use test_pallet::GenesisConfig;
|
||||
|
|
||||
|
||||
+2
-2
@@ -30,7 +30,7 @@ error[E0412]: cannot find type `Origin` in module `pallet`
|
||||
= note: this error originates in the macro `construct_runtime` (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||
help: consider importing one of these items
|
||||
|
|
||||
1 | use frame_support_test::Origin;
|
||||
1 + use frame_support_test::Origin;
|
||||
|
|
||||
1 | use frame_system::Origin;
|
||||
1 + use frame_system::Origin;
|
||||
|
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
error[E0433]: failed to resolve: use of undeclared type `Insect`
|
||||
error[E0405]: cannot find trait `Insect` in this scope
|
||||
--> tests/derive_impl_ui/bad_disambiguation_path.rs:38:35
|
||||
|
|
||||
38 | #[derive_impl(FourLeggedAnimal as Insect)]
|
||||
| ^^^^^^ use of undeclared type `Insect`
|
||||
| ^^^^^^ not found in this scope
|
||||
|
||||
@@ -23,5 +23,6 @@ error[E0277]: `Bar` doesn't implement `std::fmt::Debug`
|
||||
= note: required for the cast from `&Bar` to the object type `dyn std::fmt::Debug`
|
||||
help: consider annotating `Bar` with `#[derive(Debug)]`
|
||||
|
|
||||
17 | #[derive(Debug)]
|
||||
17 + #[derive(Debug)]
|
||||
18 | struct Bar;
|
||||
|
|
||||
|
||||
@@ -11,5 +11,6 @@ note: required by a bound in `GenesisBuild`
|
||||
| ^^^^^^^ required by this bound in `GenesisBuild`
|
||||
help: consider annotating `pallet::GenesisConfig` with `#[derive(Default)]`
|
||||
|
|
||||
19 | #[derive(Default)]
|
||||
19 + #[derive(Default)]
|
||||
20 | pub struct GenesisConfig;
|
||||
|
|
||||
|
||||
Reference in New Issue
Block a user