2020-06-27 02:37:43 +00:00
|
|
|
package kv
|
2020-01-08 18:16:17 +00:00
|
|
|
|
|
|
|
var (
|
2020-11-20 18:06:12 +00:00
|
|
|
// Genesis information bucket key.
|
|
|
|
genesisInfoBucket = []byte("genesis-info-bucket")
|
|
|
|
// Genesis validators root key.
|
|
|
|
genesisValidatorsRootKey = []byte("genesis-val-root")
|
|
|
|
|
2020-11-25 20:04:43 +00:00
|
|
|
// Key to the lowest signed proposal in a validator bucket.
|
|
|
|
lowestSignedProposalKey = []byte("lowest-signed-proposal")
|
|
|
|
highestSignedProposalKey = []byte("highest-signed-proposal")
|
|
|
|
|
2020-01-08 18:16:17 +00:00
|
|
|
// Validator slashing protection from double proposals.
|
|
|
|
historicProposalsBucket = []byte("proposal-history-bucket")
|
2020-09-14 01:55:33 +00:00
|
|
|
// Validator slashing protection from double proposals.
|
|
|
|
newhistoricProposalsBucket = []byte("proposal-history-bucket-interchange")
|
2020-01-19 22:05:48 +00:00
|
|
|
// Validator slashing protection from slashable attestations.
|
|
|
|
historicAttestationsBucket = []byte("attestation-history-bucket")
|
2020-10-06 19:59:36 +00:00
|
|
|
// New Validator slashing protection from slashable attestations.
|
2020-10-15 19:35:31 +00:00
|
|
|
newHistoricAttestationsBucket = []byte("attestation-history-bucket-interchange")
|
2020-01-08 18:16:17 +00:00
|
|
|
)
|