Skip to content

Commit

Permalink
chore: make BatchClaim private
Browse files Browse the repository at this point in the history
  • Loading branch information
gpabst committed Dec 3, 2024
1 parent 2c2a3bf commit 50fa8c3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/rewards/claim.go
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ func getClaimFlags() []cli.Flag {
return allFlags
}

func BatchClaim(
func batchClaim(
ctx context.Context,
logger logging.Logger,
ethClient *ethclient.Client,
Expand Down Expand Up @@ -260,7 +260,7 @@ func Claim(cCtx *cli.Context, p utils.Prompter) error {
}

if config.BatchClaimFile != "" {
return BatchClaim(ctx, logger, ethClient, elReader, df, config, p, claimDate, rootIndex, proofData)
return batchClaim(ctx, logger, ethClient, elReader, df, config, p, claimDate, rootIndex, proofData)
}

elClaim, claim, account, err := generateClaimPayload(
Expand Down

0 comments on commit 50fa8c3

Please sign in to comment.