pub type ExternalProposalId = DigestOf<Blake2b256, ExternalProposalDocument>;
Expand description

the identifier of the external proposal is the Blake2b 256 bits of the external proposal document hash.

Aliased Type§

struct ExternalProposalId {
    inner: Digest<Blake2b256>,
    marker: PhantomData<ExternalProposalDocument>,
}

Fields§

§inner: Digest<Blake2b256>§marker: PhantomData<ExternalProposalDocument>