Trait noble_babe::HandleEquivocation[][src]

pub trait HandleEquivocation<T: Config> {
    fn report_offence(
        reporters: Vec<T::AccountId>,
        offence: BabeEquivocationOffence<T::KeyOwnerIdentification>
    ) -> Result<(), OffenceError>;
fn is_known_offence(
        offenders: &[T::KeyOwnerIdentification],
        time_slot: &Slot
    ) -> bool;
fn submit_unsigned_equivocation_report(
        equivocation_proof: EquivocationProof<T::Header>,
        key_owner_proof: T::KeyOwnerProof
    ) -> DispatchResult;
fn block_author() -> Option<T::AccountId>; }

A trait with utility methods for handling equivocation reports in BABE. The trait provides methods for reporting an offence triggered by a valid equivocation report, checking the current block author (to declare as the reporter), and also for creating and submitting equivocation report extrinsics (useful only in offchain context).

Required methods

fn report_offence(
    reporters: Vec<T::AccountId>,
    offence: BabeEquivocationOffence<T::KeyOwnerIdentification>
) -> Result<(), OffenceError>
[src]

Report an offence proved by the given reporters.

fn is_known_offence(
    offenders: &[T::KeyOwnerIdentification],
    time_slot: &Slot
) -> bool
[src]

Returns true if all of the offenders at the given time slot have already been reported.

fn submit_unsigned_equivocation_report(
    equivocation_proof: EquivocationProof<T::Header>,
    key_owner_proof: T::KeyOwnerProof
) -> DispatchResult
[src]

Create and dispatch an equivocation report extrinsic.

fn block_author() -> Option<T::AccountId>[src]

Fetch the current block author id, if defined.

Loading content...

Implementations on Foreign Types

impl<T: Config> HandleEquivocation<T> for ()[src]

Loading content...

Implementors

Loading content...