referrerpolicy=no-referrer-when-downgrade
pallet_conviction_voting::pallet

Type Alias VotingFor

Source
pub type VotingFor<T: Config<I>, I: 'static = ()> = StorageDoubleMap<_GeneratedPrefixForStorageVotingFor<T, I>, Twox64Concat, T::AccountId, Twox64Concat, ClassOf<T, I>, VotingOf<T, I>, ValueQuery>;
Expand description

All voting for a particular voter in a particular voting class. We store the balance for the number of votes that we have recorded.

Storage type is [StorageDoubleMap] with key1 type T :: AccountId, key2 type ClassOf < T, I > and value type VotingOf < T, I >.

Aliased Type§

struct VotingFor<T: Config<I>, I: 'static = ()>(/* private fields */);