Type Definition pallet_democracy::pallet::VotingOf[][src]

type VotingOf<T: Config> = StorageMap<_GeneratedPrefixForStorageVotingOf<T>, Twox64Concat, T::AccountId, Voting<<<T as Config>::Currency as Currency<<T as Config>::AccountId>>::Balance, T::AccountId, T::BlockNumber>, ValueQuery>;
Expand description

All votes for a particular voter. We store the balance for the number of votes that we have recorded. The second item is the total amount of delegations, that will be added.

TWOX-NOTE: SAFE as AccountIds are crypto hashes anyway.