pub type RevocationTracking<T: Config> = StorageMap<_GeneratedPrefixForStorageRevocationTracking<T>, Identity, PermissionId, BoundedBTreeSet<T::AccountId, T::MaxRevokersPerPermission>, ValueQuery>;
Expand description
Revocations in progress and the voters
Storage type is [StorageMap
] with key type PermissionId
and value type BoundedBTreeSet < T :: AccountId, T :: MaxRevokersPerPermission >
.
Aliased Typeยง
struct RevocationTracking<T: Config>(/* private fields */);