pub type Voting<T: Config<I>, I: 'static = ()> = StorageDoubleMap<_GeneratedPrefixForStorageVoting<T, I>, Blake2_128Concat, PollIndexOf<T, I>, Twox64Concat, T::AccountId, VoteRecord>;
Expand description

Votes on a given proposal, if it is ongoing.

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

Aliased Type§

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