Interface RootHashSchedulerCommitment

SchedulerCommitment is a structure for storing scheduler commitment and its votes.

interface RootHashSchedulerCommitment {
    commitment?: RootHashExecutorCommitment;
    votes?: Map<Uint8Array, Uint8Array>;
}

Properties

Properties

Commitment is a verified scheduler's Commitment for which votes are being collected.

votes?: Map<Uint8Array, Uint8Array>

Votes is a map that collects Votes from nodes in the form of commitment hashes.

A nil vote indicates a failure.