mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-26 05:17:22 +00:00
3c61cc7d8a
* allow checkpoint or genesis origin; refactoring some quick readability improvements and simplifying the logic enforcing the startup ordering of the attestation processing routine * address PR feedback * gofmt * Update beacon-chain/blockchain/receive_attestation.go Co-authored-by: Preston Van Loon <preston@prysmaticlabs.com> * Apply suggestions from code review use log.WithError for aggregation friendliness Co-authored-by: Preston Van Loon <preston@prysmaticlabs.com> Co-authored-by: kasey <kasey@users.noreply.github.com> Co-authored-by: Preston Van Loon <preston@prysmaticlabs.com> Co-authored-by: Raul Jordan <raul@prysmaticlabs.com> Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
65 lines
3.2 KiB
Go
65 lines
3.2 KiB
Go
package kv
|
|
|
|
// The schema will define how to store and retrieve data from the db.
|
|
// we can prefix or suffix certain values such as `block` with attributes
|
|
// for prefix-wide scans across the underlying BoltDB buckets when filtering data.
|
|
// For example, we might store attestations as shard + attestation_root -> attestation, making
|
|
// it easy to scan for keys that have a certain shard number as a prefix and return those
|
|
// corresponding attestations.
|
|
var (
|
|
attestationsBucket = []byte("attestations")
|
|
blocksBucket = []byte("blocks")
|
|
stateBucket = []byte("state")
|
|
stateSummaryBucket = []byte("state-summary")
|
|
proposerSlashingsBucket = []byte("proposer-slashings")
|
|
attesterSlashingsBucket = []byte("attester-slashings")
|
|
voluntaryExitsBucket = []byte("voluntary-exits")
|
|
chainMetadataBucket = []byte("chain-metadata")
|
|
checkpointBucket = []byte("check-point")
|
|
powchainBucket = []byte("powchain")
|
|
stateValidatorsBucket = []byte("state-validators")
|
|
|
|
// Deprecated: This bucket was migrated in PR 6461. Do not use, except for migrations.
|
|
slotsHasObjectBucket = []byte("slots-has-objects")
|
|
// Deprecated: This bucket was migrated in PR 6461. Do not use, except for migrations.
|
|
archivedRootBucket = []byte("archived-index-root")
|
|
|
|
// Key indices buckets.
|
|
blockParentRootIndicesBucket = []byte("block-parent-root-indices")
|
|
blockSlotIndicesBucket = []byte("block-slot-indices")
|
|
stateSlotIndicesBucket = []byte("state-slot-indices")
|
|
attestationHeadBlockRootBucket = []byte("attestation-head-block-root-indices")
|
|
attestationSourceRootIndicesBucket = []byte("attestation-source-root-indices")
|
|
attestationSourceEpochIndicesBucket = []byte("attestation-source-epoch-indices")
|
|
attestationTargetRootIndicesBucket = []byte("attestation-target-root-indices")
|
|
attestationTargetEpochIndicesBucket = []byte("attestation-target-epoch-indices")
|
|
finalizedBlockRootsIndexBucket = []byte("finalized-block-roots-index")
|
|
blockRootValidatorHashesBucket = []byte("block-root-validator-hashes")
|
|
|
|
// Specific item keys.
|
|
headBlockRootKey = []byte("head-root")
|
|
genesisBlockRootKey = []byte("genesis-root")
|
|
depositContractAddressKey = []byte("deposit-contract")
|
|
justifiedCheckpointKey = []byte("justified-checkpoint")
|
|
finalizedCheckpointKey = []byte("finalized-checkpoint")
|
|
powchainDataKey = []byte("powchain-data")
|
|
|
|
// Below keys are used to identify objects are to be fork compatible.
|
|
// Objects that are only compatible with specific forks should be prefixed with such keys.
|
|
altairKey = []byte("altair")
|
|
mergeKey = []byte("merge")
|
|
// block root included in the beacon state used by weak subjectivity initial sync
|
|
originBlockRootKey = []byte("origin-block-root")
|
|
|
|
// Deprecated: This index key was migrated in PR 6461. Do not use, except for migrations.
|
|
lastArchivedIndexKey = []byte("last-archived")
|
|
// Deprecated: This index key was migrated in PR 6461. Do not use, except for migrations.
|
|
savedStateSlotsKey = []byte("saved-state-slots")
|
|
|
|
// New state management service compatibility bucket.
|
|
newStateServiceCompatibleBucket = []byte("new-state-compatible")
|
|
|
|
// Migrations
|
|
migrationsBucket = []byte("migrations")
|
|
)
|