Given a set of boolean accepts, decide if commit quorum met.
bool commit(Map<int, bool> votes) { final accepts = votes.values.where((v) => v).length; return accepts >= commitQuorum(); }