Type Definition pallet_dev_mode::pallet::Dummy

source ·
pub type Dummy<T: Config> = StorageValue<_GeneratedPrefixForStorageDummy<T>, Vec<T::AccountId>>;
Expand description

The MEL requirement for bounded pallets is skipped by dev_mode. This means that all storages are marked as unbounded. This is equivalent to specifying #[pallet::unbounded] on this type definitions. When the dev_mode is removed, we would need to implement implement MaxEncodedLen.

Storage type is StorageValue with value type Vec < T :: AccountId >.