The core protocol of WoopChain
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
woop/staking/effective/eligible.go

71 lines
1.7 KiB

package effective
// Eligibility represents ability to participate in EPoS auction
// that occurs just once an epoch on beaconchain
type Eligibility byte
const (
// Nil is a default state that represents a no-op
Nil Eligibility = iota
// Active means allowed in epos auction
Active
// Inactive means validator did not sign enough over 66%
// of the time in an epoch and so they are removed from
// the possibility of being in the epos auction, which happens
// only once an epoch and only
// by beaconchain, aka shard.BeaconChainShardID
Inactive
// Banned records whether this validator is banned
// from the network because they double-signed
// it can never be undone
Banned
)
// Candidacy is a more semantically meaningful
// value that is derived from core protocol logic but
// meant more for the presentation of user, like at RPC
type Candidacy byte
const (
// Unknown ..
Unknown Candidacy = iota
// ForeverBanned ..
ForeverBanned
// Candidate ..
Candidate = iota
// NotCandidate ..
NotCandidate
// Elected ..
Elected
)
func (c Candidacy) String() string {
switch c {
case ForeverBanned:
return "banned forever from network because was caught double-signing"
case Candidate:
return "eligible to be elected next epoch"
case NotCandidate:
return "not eligible to be elected next epoch"
case Elected:
return "currently elected"
default:
return "unknown"
}
}
// ValidatorStatus ..
func ValidatorStatus(currentlyInCommittee bool, status Eligibility) Candidacy {
switch {
case status == Banned:
return ForeverBanned
case currentlyInCommittee:
return Elected
case !currentlyInCommittee && status == Active:
return Candidate
case !currentlyInCommittee && status != Active:
return NotCandidate
default:
return Unknown
}
}