mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-12 04:30:04 +00:00
c5c868d0a6
* ignore keys in the schema * add test * use separate buckets for special values where pubkey is the index * test fix
23 lines
923 B
Go
23 lines
923 B
Go
package kv
|
|
|
|
var (
|
|
// Genesis information bucket key.
|
|
genesisInfoBucket = []byte("genesis-info-bucket")
|
|
|
|
// 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")
|
|
|
|
// Lowest and highest signed proposals.
|
|
lowestSignedProposalsBucket = []byte("lowest-signed-proposals-bucket")
|
|
highestSignedProposalsBucket = []byte("highest-signed-proposals-bucket")
|
|
|
|
// Genesis validators root bucket key.
|
|
genesisValidatorsRootKey = []byte("genesis-val-root")
|
|
)
|