pub type EquivocationProof<H> = EquivocationProof<H, AuthorityId>;Expand description
An equivocation proof for multiple block authorships on the same slot (i.e. double vote).
Aliased Type§
struct EquivocationProof<H> {
pub offender: Public,
pub slot: Slot,
pub first_header: H,
pub second_header: H,
}Fields§
§offender: PublicReturns the authority id of the equivocator.
slot: SlotThe slot at which the equivocation happened.
first_header: HThe first header involved in the equivocation.
second_header: HThe second header involved in the equivocation.