Removed deprecated #[pallet::generate_store(pub(super) trait Store)] according to latest Cumulus (#1964)

This commit is contained in:
Branislav Kontur
2023-03-14 13:45:13 +01:00
committed by Bastian Köcher
parent 874ab44e00
commit ce89a2edca
4 changed files with 0 additions and 4 deletions
-1
View File
@@ -178,7 +178,6 @@ pub mod pallet {
>>::MessagesDeliveryProof;
#[pallet::pallet]
#[pallet::generate_store(pub(super) trait Store)]
pub struct Pallet<T, I = ()>(PhantomData<(T, I)>);
impl<T: Config<I>, I: 'static> OwnedBridgeModule<T> for Pallet<T, I> {
-1
View File
@@ -277,7 +277,6 @@ pub mod pallet {
>;
#[pallet::pallet]
#[pallet::generate_store(pub(super) trait Store)]
pub struct Pallet<T, I = ()>(PhantomData<(T, I)>);
impl<T: Config<I>, I: 'static> OwnedBridgeModule<T> for Pallet<T, I> {
-1
View File
@@ -63,7 +63,6 @@ pub mod pallet {
}
#[pallet::pallet]
#[pallet::generate_store(pub(super) trait Store)]
pub struct Pallet<T>(PhantomData<T>);
#[pallet::call]
@@ -35,7 +35,6 @@ pub mod pallet {
pub trait Config: pallet_session::Config {}
#[pallet::pallet]
#[pallet::generate_store(pub(super) trait Store)]
#[pallet::without_storage_info]
pub struct Pallet<T>(PhantomData<T>);