Skip to content

Commit

Permalink
fix: fix golang lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
jaybxyz committed Sep 26, 2023
1 parent 0156592 commit 4f05ed8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions x/ratelimit/keeper/keeper_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ func (s *KeeperTestSuite) addRateLimit(
channelID string,
maxPercentSend sdkmath.Int,
maxPercentRecv sdkmath.Int,
MinRateLimitAmount sdkmath.Int,
DurationHours uint64,
minRateLimitAmount sdkmath.Int,
durationHours uint64,
) {
s.T().Helper()

Expand All @@ -60,8 +60,8 @@ func (s *KeeperTestSuite) addRateLimit(
ChannelID: channelID,
MaxPercentSend: maxPercentSend,
MaxPercentRecv: maxPercentRecv,
MinRateLimitAmount: MinRateLimitAmount,
DurationHours: DurationHours,
MinRateLimitAmount: minRateLimitAmount,
DurationHours: durationHours,
})
s.Require().NoError(err)
}

0 comments on commit 4f05ed8

Please sign in to comment.