mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 21:07:18 +00:00
22 lines
596 B
Go
22 lines
596 B
Go
package sync
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/gogo/protobuf/proto"
|
|
)
|
|
|
|
func (r *RegularSync) voluntaryExitSubscriber(ctx context.Context, msg proto.Message) error {
|
|
return r.operations.HandleValidatorExits(ctx, msg)
|
|
}
|
|
|
|
func (r *RegularSync) attesterSlashingSubscriber(ctx context.Context, msg proto.Message) error {
|
|
// TODO(#3259): Requires handlers in operations service to be implemented.
|
|
return nil
|
|
}
|
|
|
|
func (r *RegularSync) proposerSlashingSubscriber(ctx context.Context, msg proto.Message) error {
|
|
// TODO(#3259): Requires handlers in operations service to be implemented.
|
|
return nil
|
|
}
|