mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-12 04:30:04 +00:00
fcfd828725
* Local protection schema update * Merge branch 'master' of github.com:prysmaticlabs/prysm into proposal_protection_schema_update * fix interface issue * fix lint * gaz * Merge refs/heads/master into proposal_protection_schema_update * Merge refs/heads/master into proposal_protection_schema_update * Merge refs/heads/master into proposal_protection_schema_update * Merge refs/heads/master into proposal_protection_schema_update * Merge refs/heads/master into proposal_protection_schema_update * Merge refs/heads/master into proposal_protection_schema_update * Merge refs/heads/master into proposal_protection_schema_update * Merge refs/heads/master into proposal_protection_schema_update * Merge refs/heads/master into proposal_protection_schema_update * Merge refs/heads/master into proposal_protection_schema_update * Merge refs/heads/master into proposal_protection_schema_update * Update validator/db/kv/new_proposal_history_test.go
17 lines
729 B
Go
17 lines
729 B
Go
package kv
|
|
|
|
var (
|
|
// Validator slashing protection from double proposals.
|
|
historicProposalsBucket = []byte("proposal-history-bucket")
|
|
// Validator slashing protection from double proposals.
|
|
newhistoricProposalsBucket = []byte("proposal-history-bucket-interchange")
|
|
// Validator slashing protection from slashable attestations.
|
|
historicAttestationsBucket = []byte("attestation-history-bucket")
|
|
// 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")
|
|
)
|