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.

Storage type is StorageMap with key type u32 and value type SignedSubmissionOf < T >.