Type Alias report_equivocation

report_equivocation: TxDescriptor<{
    equivocation_proof: {
        first: {
            commitment: {
                block_number: number;
                payload: [FixedSizeBinary<2>, Binary][];
                validator_set_id: bigint;
            };
            id: FixedSizeBinary<33>;
            signature: FixedSizeBinary<65>;
        };
        second: {
            commitment: {
                block_number: number;
                payload: [FixedSizeBinary<2>, Binary][];
                validator_set_id: bigint;
            };
            id: FixedSizeBinary<33>;
            signature: FixedSizeBinary<65>;
        };
    };
    key_owner_proof: {
        session: number;
        trie_nodes: Binary[];
        validator_count: number;
    };
}>

Report voter equivocation/misbehavior. This method will verify the equivocation proof and validate the given key ownership proof against the extracted offender. If both are valid, the offence will be reported.