TalliedVote represents a vote for a poll with the accumulated stake of all validators voting for the same data

interface TalliedVote {
    data?: Any;
    isVoterLate: {
        [key: string]: boolean;
    };
    pollId: Long;
    tally: Uint8Array;
}

Properties

data?: Any
isVoterLate: {
    [key: string]: boolean;
}

Type declaration

  • [key: string]: boolean
pollId: Long
tally: Uint8Array

Generated using TypeDoc