mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-23 11:57:18 +00:00
19f6d3bef6
* Add Capella DB changes * Add tests
40 lines
909 B
Go
40 lines
909 B
Go
package kv
|
|
|
|
import "bytes"
|
|
|
|
// In order for an encoding to be Altair compatible, it must be prefixed with altair key.
|
|
func hasAltairKey(enc []byte) bool {
|
|
if len(altairKey) >= len(enc) {
|
|
return false
|
|
}
|
|
return bytes.Equal(enc[:len(altairKey)], altairKey)
|
|
}
|
|
|
|
func hasBellatrixKey(enc []byte) bool {
|
|
if len(bellatrixKey) >= len(enc) {
|
|
return false
|
|
}
|
|
return bytes.Equal(enc[:len(bellatrixKey)], bellatrixKey)
|
|
}
|
|
|
|
func hasBellatrixBlindKey(enc []byte) bool {
|
|
if len(bellatrixBlindKey) >= len(enc) {
|
|
return false
|
|
}
|
|
return bytes.Equal(enc[:len(bellatrixBlindKey)], bellatrixBlindKey)
|
|
}
|
|
|
|
func hasCapellaKey(enc []byte) bool {
|
|
if len(capellaKey) >= len(enc) {
|
|
return false
|
|
}
|
|
return bytes.Equal(enc[:len(capellaKey)], capellaKey)
|
|
}
|
|
|
|
func hasCapellaBlindKey(enc []byte) bool {
|
|
if len(capellaBlindKey) >= len(enc) {
|
|
return false
|
|
}
|
|
return bytes.Equal(enc[:len(capellaBlindKey)], capellaBlindKey)
|
|
}
|