RoundResults contains information about how a particular round was executed by the consensus layer.

interface RootHashRoundResults {
    bad_compute_entities?: Uint8Array[];
    good_compute_entities?: Uint8Array[];
    messages?: RootHashMessageEvent[];
}

Properties

bad_compute_entities?: Uint8Array[]

BadComputeEntities are the public keys of compute nodes' controlling entities that negatively contributed to the round by causing discrepancies.

good_compute_entities?: Uint8Array[]

GoodComputeEntities are the public keys of compute nodes' controlling entities that positively contributed to the round by replicating the computation correctly.

Messages are the results of executing emitted runtime messages.