prysm-pulse/proto/prysm/v2/sync_committee_mainnet.go
terence tsao 466546bb40
Add sync committee aggregation_bits tags for minimal and mainnet (#9147)
* Add aggregation_bits tags for minimal and mainnet

* Update go-bitfield

* Go mod tidy
2021-07-03 18:59:35 -05:00

12 lines
184 B
Go

// +build !minimal
package v2
import (
"github.com/prysmaticlabs/go-bitfield"
)
func NewSyncCommitteeAggregationBits() bitfield.Bitvector128 {
return bitfield.NewBitvector128()
}