Signature Collection and Aggregation
Collecting Votes
Signature Aggregation
void collectAndAggregateVotes(std::string topic) {
log("Leader collecting votes on topic: " + topic);
std::vector<std::string> votes = pubsub.collectVotes(topic);
std::string aggregatedSignature = aggregateSignatures(votes);
log("Aggregated Signature: " + aggregatedSignature);
}Vote Collection Flow Diagram
Last updated