mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-26 05:17:22 +00:00
a26ef9b44f
* voluntary exit validator & handler skeleton * pass through && register * voluntary exits * voluntary exits * voluntary exits * gaz * lint
12 lines
220 B
Go
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)
|
|
}
|