mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-23 03:51:29 +00:00
12 lines
180 B
Go
12 lines
180 B
Go
|
// +build minimal
|
||
|
|
||
|
package eth
|
||
|
|
||
|
import (
|
||
|
"github.com/prysmaticlabs/go-bitfield"
|
||
|
)
|
||
|
|
||
|
func NewSyncCommitteeAggregationBits() bitfield.Bitvector8 {
|
||
|
return bitfield.NewBitvector8()
|
||
|
}
|