mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 04:47:18 +00:00
c3f875bf65
* Implement SubmitAttesterSlashing in the beacon API * gzl * remove migration test rule * fix BUILD file formatting Co-authored-by: Raul Jordan <raul@prysmaticlabs.com>
46 lines
1.4 KiB
Go
46 lines
1.4 KiB
Go
package slashings
|
|
|
|
import (
|
|
"context"
|
|
|
|
ethpb "github.com/prysmaticlabs/ethereumapis/eth/v1alpha1"
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/state"
|
|
)
|
|
|
|
// PoolMock is a fake implementation of PoolManager.
|
|
type PoolMock struct {
|
|
PendingAttSlashings []*ethpb.AttesterSlashing
|
|
PendingPropSlashings []*ethpb.ProposerSlashing
|
|
}
|
|
|
|
// PendingAttesterSlashings --
|
|
func (m *PoolMock) PendingAttesterSlashings(_ context.Context, _ *state.BeaconState, _ bool) []*ethpb.AttesterSlashing {
|
|
return m.PendingAttSlashings
|
|
}
|
|
|
|
// PendingProposerSlashings --
|
|
func (m *PoolMock) PendingProposerSlashings(_ context.Context, _ *state.BeaconState, _ bool) []*ethpb.ProposerSlashing {
|
|
return m.PendingPropSlashings
|
|
}
|
|
|
|
// InsertAttesterSlashing --
|
|
func (m *PoolMock) InsertAttesterSlashing(_ context.Context, _ *state.BeaconState, slashing *ethpb.AttesterSlashing) error {
|
|
m.PendingAttSlashings = append(m.PendingAttSlashings, slashing)
|
|
return nil
|
|
}
|
|
|
|
// InsertProposerSlashing --
|
|
func (m *PoolMock) InsertProposerSlashing(_ context.Context, _ *state.BeaconState, _ *ethpb.ProposerSlashing) error {
|
|
panic("implement me")
|
|
}
|
|
|
|
// MarkIncludedAttesterSlashing --
|
|
func (m *PoolMock) MarkIncludedAttesterSlashing(_ *ethpb.AttesterSlashing) {
|
|
panic("implement me")
|
|
}
|
|
|
|
// MarkIncludedProposerSlashing --
|
|
func (m *PoolMock) MarkIncludedProposerSlashing(_ *ethpb.ProposerSlashing) {
|
|
panic("implement me")
|
|
}
|