pub type Proposals<T: Config> = StorageMap<_GeneratedPrefixForStorageProposals<T>, Identity, ProposalId, Proposal<T>>;
Expand description
Map of past and present proposals indexed by their incrementing ID.
Storage type is [StorageMap
] with key type ProposalId
and value type Proposal < T >
.
Aliased Typeยง
struct Proposals<T: Config>(/* private fields */);