interface Commit {
    blockId: BlockId;
    height: number;
    round: number;
    signatures: readonly CommitSignature[];
}

Properties

blockId: BlockId
height: number
round: number
signatures: readonly CommitSignature[]