prysm-pulse/beacon-chain/sync/subscriber_voluntary_exit.go
Preston Van Loon a26ef9b44f
Regular sync: pubsub subscriber for voluntary exits (#3227)
* voluntary exit validator & handler skeleton

* pass through && register

* voluntary exits

* voluntary exits

* voluntary exits

* gaz

* lint
2019-08-18 11:33:58 -04:00

12 lines
220 B
Go

package sync
import (
"context"
"github.com/gogo/protobuf/proto"
)
func (s *RegularSync) voluntaryExitSubscriber(ctx context.Context, msg proto.Message) error {
return s.operations.HandleValidatorExits(ctx, msg)
}