Skip to content

Commit

Permalink
Function rename
Browse files Browse the repository at this point in the history
  • Loading branch information
tomaszslabon committed May 7, 2024
1 parent e9e6b0f commit 92011ac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/tbtc/inactivity.go
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ func (ice *inactivityClaimExecutor) publishClaim(
HeartbeatFailed: heartbeatFailed,
}

groupMembers, err := ice.getWalletMembersInfo()
groupMembers, err := ice.getWalletOperatorsIDs()
if err != nil {
return fmt.Errorf("could not get wallet members info: [%v]", err)
}
Expand Down Expand Up @@ -198,7 +198,7 @@ func (ice *inactivityClaimExecutor) publishClaim(
return nil
}

func (ice *inactivityClaimExecutor) getWalletMembersInfo() ([]uint32, error) {
func (ice *inactivityClaimExecutor) getWalletOperatorsIDs() ([]uint32, error) {
// Cache mapping operator addresses to their wallet member IDs. It helps to
// limit the number of calls to the ETH client if some operator addresses
// occur on the list multiple times.
Expand Down

0 comments on commit 92011ac

Please sign in to comment.