paxos/src/law/ballot.hh

16 lines
246 B
C++
Raw Permalink Normal View History

2020-05-05 17:29:14 +00:00
#pragma once
#include <unordered_set>
#include "decree.hh"
namespace paxos
{
struct Ballot
{
int id;
Decree decree;
std::unordered_set<std::string> quorum;
std::unordered_set<std::string> voters;
}
}