mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-23 03:51:29 +00:00
61cbe3709b
* Ignore subset aggregates * Add test * Update BUILD.bazel * Update validate_sync_contribution_proof_test.go * Update validate_sync_contribution_proof_test.go * Don't utilize pooled objects. Use direct caches * Handle mainnet/minimal better * Revert att changes * Check overlaps before set * Feedbacks * Fixed a copy bug * Fixed the same copy bug in committee indices cache * Use SafeCopyBytes Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
17 lines
284 B
Go
17 lines
284 B
Go
//go:build minimal
|
|
// +build minimal
|
|
|
|
package eth
|
|
|
|
import (
|
|
"github.com/prysmaticlabs/go-bitfield"
|
|
)
|
|
|
|
func NewSyncCommitteeAggregationBits() bitfield.Bitvector8 {
|
|
return bitfield.NewBitvector8()
|
|
}
|
|
|
|
func ConvertToSyncContributionBitVector(b []byte) bitfield.Bitvector8 {
|
|
return b
|
|
}
|