Type Alias hotshot_types::vote::VoteMap2

source ·
type VoteMap2<COMMITMENT, PK, SIG> = HashMap<COMMITMENT, (U256, BTreeMap<PK, (SIG, COMMITMENT)>)>;
Expand description

Mapping of commitments to vote tokens by key.

Aliased Type§

struct VoteMap2<COMMITMENT, PK, SIG> {
    base: HashMap<COMMITMENT, (U256, BTreeMap<PK, (SIG, COMMITMENT)>), RandomState>,
}

Fields§

§base: HashMap<COMMITMENT, (U256, BTreeMap<PK, (SIG, COMMITMENT)>), RandomState>