Skip to content

Commit

Permalink
fixing Incorrect conversion between integer types
Browse files Browse the repository at this point in the history
  • Loading branch information
mfdeveloper508 committed Feb 2, 2023
1 parent 56d9b41 commit 87a0562
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/lib/funds_type.go
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ func (f *FundsType) parse(data string) (int, error) {
read += size
}

for index := 0; index < int(f.DistributionNumber); index++ {
for index := int64(0); index < f.DistributionNumber; index++ {

var amount, day int64

Expand Down

0 comments on commit 87a0562

Please sign in to comment.