Type Definition pallet_democracy::pallet::Blacklist
source · pub type Blacklist<T: Config> = StorageMap<_GeneratedPrefixForStorageBlacklist<T>, Identity, H256, (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 H256
and value type (BlockNumberFor < T >, BoundedVec < T :: AccountId, T :: MaxBlacklisted >)
.