mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 12:57:18 +00:00
4dc65c5787
* Add GenValRoot dbs * Test genvalroot * Fix names * Add overwrite rejection Co-authored-by: Raul Jordan <raul@prysmaticlabs.com>
18 lines
726 B
Go
18 lines
726 B
Go
package kv
|
|
|
|
var (
|
|
// Genesis information bucket key.
|
|
genesisInfoBucket = []byte("genesis-info-bucket")
|
|
// Genesis validators root key.
|
|
genesisValidatorsRootKey = []byte("genesis-val-root")
|
|
|
|
// 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")
|
|
// New Validator slashing protection from slashable attestations.
|
|
newHistoricAttestationsBucket = []byte("attestation-history-bucket-interchange")
|
|
)
|