pub type DefenderVotes<T: Config<I>, I: 'static = ()> = StorageDoubleMap<_GeneratedPrefixForStorageDefenderVotes<T, I>, Twox64Concat, RoundIndex, Twox64Concat, T::AccountId, Vote>;
Expand description
Votes for the defender, keyed by challenge round.
Storage type is [StorageDoubleMap
] with key1 type RoundIndex, key2 type T :: AccountId and value type Vote.
Aliased Type§
struct DefenderVotes<T: Config<I>, I: 'static = ()>(/* private fields */);