Skip to content

sgns::ConsensusManager::QuorumTally

Quorum tally structure.

#include <Consensus.hpp>

Public Attributes

Name
uint64_t total_weight
The total maximum weight of the quorum.
uint64_t approved_weight
The weight which was already approved.
bool has_quorum
Flag indicating if quorum was reached.
uint64_t qualified_sum
Slot-weighted qualified contribution.
uint64_t slot_threshold
total_voting_reputation * 0.75 (D-06).

Public Attributes Documentation

variable total_weight

uint64_t total_weight = 0;

The total maximum weight of the quorum.

variable approved_weight

uint64_t approved_weight = 0;

The weight which was already approved.

variable has_quorum

bool has_quorum = false;

Flag indicating if quorum was reached.

variable qualified_sum

uint64_t qualified_sum = 0;

Slot-weighted qualified contribution.

variable slot_threshold

uint64_t slot_threshold = 0;

total_voting_reputation * 0.75 (D-06).


Updated on 2026-06-28 at 18:54:57 -0700