mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-22 19:40:37 +00:00
b55ddb5a34
* Use go:build lines and remove obsolete +build lines * Run gazelle * Update crypto/bls/blst/stub.go * Update crypto/bls/blst/stub.go Co-authored-by: Raul Jordan <raul@prysmaticlabs.com> Co-authored-by: Preston Van Loon <preston@prysmaticlabs.com> Co-authored-by: Nishant Das <nishdas93@gmail.com>
16 lines
273 B
Go
16 lines
273 B
Go
//go:build !minimal
|
|
|
|
package eth
|
|
|
|
import (
|
|
"github.com/prysmaticlabs/go-bitfield"
|
|
)
|
|
|
|
func NewSyncCommitteeAggregationBits() bitfield.Bitvector128 {
|
|
return bitfield.NewBitvector128()
|
|
}
|
|
|
|
func ConvertToSyncContributionBitVector(b []byte) bitfield.Bitvector128 {
|
|
return b
|
|
}
|