예제 #1
0
파일: election.go 프로젝트: bvk/ascent
func (this *Election) doRestoreConfig(config *thispb.Configuration) {
	this.committee = config.GetCommitteeList()
	atomic.StoreInt32(&this.majoritySize, int32(config.GetMajoritySize()))
	if config.GetInCommittee() {
		atomic.StoreInt32(&this.inCommittee, 1)
	}
}