Type Definition pallet_election_provider_multi_phase::pallet::SignedSubmissionsMap
source · pub type SignedSubmissionsMap<T: Config> = StorageMap<_GeneratedPrefixForStorageSignedSubmissionsMap<T>, Twox64Concat, u32, SignedSubmissionOf<T>, OptionQuery>;
Expand description
Unchecked, signed solutions.
Together with SubmissionIndices
, this stores a bounded set of SignedSubmissions
while
allowing us to keep only a single one in memory at a time.
Twox note: the key of the map is an auto-incrementing index which users cannot inspect or affect; we shouldn’t need a cryptographically secure hasher.