Type Definition pallet_democracy::pallet::VotingOf
source · pub 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 AccountId
s are crypto hashes anyway.