Type Alias pallet_democracy::pallet::Blacklist
source · pub type Blacklist<T: Config> = StorageMap<_GeneratedPrefixForStorageBlacklist<T>, Identity, T::Hash, (BlockNumberFor<T>, BoundedVec<T::AccountId, T::MaxBlacklisted>)>;
Expand description
A record of who vetoed what. Maps proposal hash to a possible existent block number (until when it may not be resubmitted) and who vetoed it.
Storage type is [StorageMap
] with key type T :: Hash
and value type (BlockNumberFor < T > , BoundedVec < T :: AccountId, T :: MaxBlacklisted >)
.
Aliased Type§
struct Blacklist<T: Config>(/* private fields */);