mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 12:57:18 +00:00
11 lines
446 B
Go
11 lines
446 B
Go
|
package db
|
||
|
|
||
|
var (
|
||
|
// Validator slashing protection from double proposals.
|
||
|
historicProposalsBucket = []byte("proposal-history-bucket")
|
||
|
// In order to quickly detect surround and surrounded attestations we need to store
|
||
|
// the min and max span for each validator for each epoch.
|
||
|
// see https://github.com/protolambda/eth2-surround/blob/master/README.md#min-max-surround
|
||
|
validatorsMinMaxSpanBucket = []byte("validators-min-max-span-bucket")
|
||
|
)
|