pub type SignedStatement = SignedStatement<CommittedCandidateReceipt, CandidateHash, ValidatorIndex, ValidatorSignature>;
Expand description

Signed statements about candidates.

Aliased Type§

struct SignedStatement {
    pub statement: Statement<CommittedCandidateReceipt, CandidateHash>,
    pub signature: Signature,
    pub sender: ValidatorIndex,
}

Fields§

§statement: Statement<CommittedCandidateReceipt, CandidateHash>

The statement.

§signature: Signature

The signature.

§sender: ValidatorIndex

The sender.