mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 21:07:18 +00:00
d077483577
* v3 import renamings * tidy * fmt * rev * Update beacon-chain/core/epoch/precompute/reward_penalty_test.go * Update beacon-chain/core/helpers/validators_test.go * Update beacon-chain/db/alias.go * Update beacon-chain/db/alias.go * Update beacon-chain/db/alias.go * Update beacon-chain/db/iface/BUILD.bazel * Update beacon-chain/db/kv/kv.go * Update beacon-chain/db/kv/state.go * Update beacon-chain/rpc/prysm/v1alpha1/validator/attester_test.go * Update beacon-chain/rpc/prysm/v1alpha1/validator/attester_test.go * Update beacon-chain/sync/initial-sync/service.go * fix deps * fix bad replacements * fix bad replacements * change back * gohashtree version * fix deps Co-authored-by: Nishant Das <nishdas93@gmail.com> Co-authored-by: Potuz <potuz@prysmaticlabs.com>
35 lines
975 B
Go
35 lines
975 B
Go
package monitor
|
|
|
|
import (
|
|
"github.com/prysmaticlabs/prysm/v3/consensus-types/interfaces"
|
|
ethpb "github.com/prysmaticlabs/prysm/v3/proto/prysm/v1alpha1"
|
|
"github.com/sirupsen/logrus"
|
|
)
|
|
|
|
// processExitsFromBlock logs the event when a tracked validators' exit was included in a block
|
|
func (s *Service) processExitsFromBlock(blk interfaces.BeaconBlock) {
|
|
s.RLock()
|
|
defer s.RUnlock()
|
|
for _, exit := range blk.Body().VoluntaryExits() {
|
|
idx := exit.Exit.ValidatorIndex
|
|
if s.trackedIndex(idx) {
|
|
log.WithFields(logrus.Fields{
|
|
"ValidatorIndex": idx,
|
|
"Slot": blk.Slot(),
|
|
}).Info("Voluntary exit was included")
|
|
}
|
|
}
|
|
}
|
|
|
|
// processExit logs the event when tracked validators' exit was processed
|
|
func (s *Service) processExit(exit *ethpb.SignedVoluntaryExit) {
|
|
idx := exit.Exit.ValidatorIndex
|
|
s.RLock()
|
|
defer s.RUnlock()
|
|
if s.trackedIndex(idx) {
|
|
log.WithFields(logrus.Fields{
|
|
"ValidatorIndex": idx,
|
|
}).Info("Voluntary exit was processed")
|
|
}
|
|
}
|