dsteem
    Preparing search index...

    Interface ReportOverProductionOperation

    This operation is used to report a miner who signs two blocks at the same time. To be valid, the violation must be reported within STEEMIT_MAX_WITNESSES blocks of the head block (1 round) and the producer must be in the ACTIVE witness set.

    Users not in the ACTIVE witness set should not have to worry about their key getting compromised and being used to produced multiple blocks so the attacker can report it and steel their vesting steem.

    The result of the operation is to transfer the full VESTING STEEM balance of the block producer to the reporter.

    interface ReportOverProductionOperation {
        "0": "report_over_production";
        "1": {
            first_block: SignedBlockHeader;
            reporter: string;
            second_block: SignedBlockHeader;
        };
    }

    Hierarchy (View Summary)

    Index

    Properties

    0 1

    Properties

    "0": "report_over_production"
    "1": {
        first_block: SignedBlockHeader;
        reporter: string;
        second_block: SignedBlockHeader;
    }