Skip to content
Snippets Groups Projects
Commit 7b2b99ee authored by Oliver Tale-Yazdi's avatar Oliver Tale-Yazdi Committed by GitHub
Browse files

co #4746: Require `MaxEncodedLen` per default (#917)


* Add `without_storage_info`

Signed-off-by: default avatarOliver Tale-Yazdi <oliver.tale-yazdi@parity.io>

* Add `without_storage_info`

Signed-off-by: default avatarOliver Tale-Yazdi <oliver.tale-yazdi@parity.io>

* Add `without_storage_info`

Signed-off-by: default avatarOliver Tale-Yazdi <oliver.tale-yazdi@parity.io>

* Add `without_storage_info`

Signed-off-by: default avatarOliver Tale-Yazdi <oliver.tale-yazdi@parity.io>

* update lockfile for {"polkadot"}

* Run `cargo update -p sp-io`

Signed-off-by: default avatarOliver Tale-Yazdi <oliver.tale-yazdi@parity.io>

Co-authored-by: parity-processbot <>
parent 4be6547b
Branches
No related merge requests found
This diff is collapsed.
...@@ -56,6 +56,7 @@ pub mod pallet { ...@@ -56,6 +56,7 @@ pub mod pallet {
pub trait Config: pallet_aura::Config + frame_system::Config {} pub trait Config: pallet_aura::Config + frame_system::Config {}
#[pallet::pallet] #[pallet::pallet]
#[pallet::without_storage_info]
pub struct Pallet<T>(_); pub struct Pallet<T>(_);
#[pallet::hooks] #[pallet::hooks]
......
...@@ -168,6 +168,7 @@ pub mod pallet { ...@@ -168,6 +168,7 @@ pub mod pallet {
#[pallet::pallet] #[pallet::pallet]
#[pallet::generate_store(pub(super) trait Store)] #[pallet::generate_store(pub(super) trait Store)]
#[pallet::without_storage_info]
pub struct Pallet<T>(_); pub struct Pallet<T>(_);
/// The invulnerable, fixed collators. /// The invulnerable, fixed collators.
......
...@@ -77,6 +77,7 @@ pub mod pallet { ...@@ -77,6 +77,7 @@ pub mod pallet {
#[pallet::pallet] #[pallet::pallet]
#[pallet::generate_store(pub(super) trait Store)] #[pallet::generate_store(pub(super) trait Store)]
#[pallet::without_storage_info]
pub struct Pallet<T>(_); pub struct Pallet<T>(_);
/// The module configuration trait. /// The module configuration trait.
......
...@@ -97,6 +97,7 @@ pub mod pallet { ...@@ -97,6 +97,7 @@ pub mod pallet {
#[pallet::pallet] #[pallet::pallet]
#[pallet::storage_version(migration::STORAGE_VERSION)] #[pallet::storage_version(migration::STORAGE_VERSION)]
#[pallet::without_storage_info]
pub struct Pallet<T>(_); pub struct Pallet<T>(_);
#[pallet::config] #[pallet::config]
......
...@@ -45,6 +45,7 @@ pub mod pallet { ...@@ -45,6 +45,7 @@ pub mod pallet {
#[pallet::pallet] #[pallet::pallet]
#[pallet::generate_store(pub(super) trait Store)] #[pallet::generate_store(pub(super) trait Store)]
#[pallet::without_storage_info]
pub struct Pallet<T>(_); pub struct Pallet<T>(_);
/// In case of a scheduled migration, this storage field contains the custom head data to be applied. /// In case of a scheduled migration, this storage field contains the custom head data to be applied.
......
...@@ -64,6 +64,7 @@ pub mod pallet { ...@@ -64,6 +64,7 @@ pub mod pallet {
#[pallet::pallet] #[pallet::pallet]
#[pallet::generate_store(pub(super) trait Store)] #[pallet::generate_store(pub(super) trait Store)]
#[pallet::storage_version(migration::STORAGE_VERSION)] #[pallet::storage_version(migration::STORAGE_VERSION)]
#[pallet::without_storage_info]
pub struct Pallet<T>(_); pub struct Pallet<T>(_);
#[pallet::config] #[pallet::config]
......
...@@ -35,6 +35,7 @@ pub mod pallet { ...@@ -35,6 +35,7 @@ pub mod pallet {
#[pallet::pallet] #[pallet::pallet]
#[pallet::generate_store(pub(super) trait Store)] #[pallet::generate_store(pub(super) trait Store)]
#[pallet::without_storage_info]
pub struct Pallet<T>(_); pub struct Pallet<T>(_);
/// The module configuration trait. /// The module configuration trait.
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment