2020-06-27 02:37:43 +00:00
|
|
|
package kv
|
2020-01-08 18:16:17 +00:00
|
|
|
|
|
|
|
var (
|
|
|
|
// Validator slashing protection from double proposals.
|
|
|
|
historicProposalsBucket = []byte("proposal-history-bucket")
|
2020-01-19 22:05:48 +00:00
|
|
|
// Validator slashing protection from slashable attestations.
|
|
|
|
historicAttestationsBucket = []byte("attestation-history-bucket")
|
2020-08-13 20:27:42 +00:00
|
|
|
// Bucket for storing important information regarding the validator API
|
|
|
|
// such as a password hash for API authentication.
|
|
|
|
validatorAPIBucket = []byte("validator-api-bucket")
|
|
|
|
// Bucket key for retrieving the hashed password used for
|
|
|
|
// authentication to the validator API.
|
|
|
|
apiHashedPasswordKey = []byte("hashed-password")
|
2020-01-08 18:16:17 +00:00
|
|
|
)
|