Skip to content

Commit

Permalink
rename
Browse files Browse the repository at this point in the history
  • Loading branch information
moshe-blox committed Dec 1, 2024
1 parent e21dca6 commit 65d49cc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions protocol/v2/types/ssvshare.go
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ func (s *SSVShare) IsAttesting(epoch phase0.Epoch) bool {
}

func (s *SSVShare) IsParticipating(epoch phase0.Epoch) bool {
activeOnContract := s.minParticipationEpoch == 0 || s.minParticipationEpoch <= epoch
return !s.Liquidated && s.IsAttesting(epoch) && activeOnContract
participating := s.minParticipationEpoch == 0 || s.minParticipationEpoch <= epoch
return !s.Liquidated && s.IsAttesting(epoch) && participating
}

func (s *SSVShare) SetFeeRecipient(feeRecipient bellatrix.ExecutionAddress) {
Expand Down

0 comments on commit 65d49cc

Please sign in to comment.