Interface ConsensusNextBlockState

NextBlockState has the state of the next block being voted on by validators.

interface ConsensusNextBlockState {
    height: longnum;
    num_validators: longnum;
    precommits: ConsensusVotes;
    prevotes: ConsensusVotes;
    voting_power: longnum;
}

Properties

height: longnum
num_validators: longnum
precommits: ConsensusVotes
prevotes: ConsensusVotes
voting_power: longnum