mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 12:57:18 +00:00
9145310647
* get rid of v2 in prysm codebase * replace block2 * builds * terence comments * gazelle
17 lines
630 B
Go
17 lines
630 B
Go
package v2
|
|
|
|
import (
|
|
"github.com/pkg/errors"
|
|
statepb "github.com/prysmaticlabs/prysm/proto/prysm/v1alpha1"
|
|
)
|
|
|
|
// PreviousEpochAttestations is not supported for HF1 beacon state.
|
|
func (b *BeaconState) PreviousEpochAttestations() ([]*statepb.PendingAttestation, error) {
|
|
return nil, errors.New("PreviousEpochAttestations is not supported for hard fork 1 beacon state")
|
|
}
|
|
|
|
// CurrentEpochAttestations is not supported for HF1 beacon state.
|
|
func (b *BeaconState) CurrentEpochAttestations() ([]*statepb.PendingAttestation, error) {
|
|
return nil, errors.New("CurrentEpochAttestations is not supported for hard fork 1 beacon state")
|
|
}
|