Skip to content

Commit

Permalink
fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
tiger5226 committed Oct 25, 2020
1 parent 8b935bf commit dbd19af
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions daemon/jobs/claimtriesync.go
Original file line number Diff line number Diff line change
Expand Up @@ -378,11 +378,11 @@ func getUpdatedClaims(jobStatus *model.JobStatus) (model.ClaimSlice, error) {
logrus.Debugf("found %d additional claims from name list", len(claims))
namesToFind = namesToFind[upTo:]
}
claimsToUpdate, err = populateClaimId(claimsToUpdate)
claimsToUpdate, err = populateClaimID(claimsToUpdate)
return claimsToUpdate, err
}

func populateClaimId(originalClaims model.ClaimSlice) (model.ClaimSlice, error) {
func populateClaimID(originalClaims model.ClaimSlice) (model.ClaimSlice, error) {
var idsToFind []interface{}
var idsOfClaims []uint64
IDMap := make(map[uint64]int)
Expand Down

0 comments on commit dbd19af

Please sign in to comment.