Skip to content

Commit 59644c4

Browse files
committed
reapply overflow fix
1 parent 8fa27f6 commit 59644c4

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

x/supply/keeper/grpc_query_test.go

+3-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@ package keeper_test
22

33
import (
44
"cosmossdk.io/math"
5+
56
sdk "github.com/cosmos/cosmos-sdk/types"
7+
68
"github.com/quicksilver-zone/quicksilver/utils/addressutils"
79
"github.com/quicksilver-zone/quicksilver/x/supply/keeper"
810
"github.com/quicksilver-zone/quicksilver/x/supply/types"
@@ -82,6 +84,7 @@ func (suite *KeeperTestSuite) TestKeeper_TopN_Disabled() {
8284
suite.Error(err)
8385
})
8486
}
87+
8588
func (suite *KeeperTestSuite) TestKeeper_TopN() {
8689
suite.Run("Params", func() {
8790
ctx := suite.chainA.GetContext()
@@ -105,6 +108,5 @@ func (suite *KeeperTestSuite) TestKeeper_TopN() {
105108
suite.Equal(5, len(topN.Accounts))
106109
suite.Equal(addr.String(), topN.Accounts[0].Address)
107110
suite.Equal(amount, topN.Accounts[0].Balance)
108-
109111
})
110112
}

x/supply/keeper/keeper.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ func (k Keeper) CalculateCirculatingSupply(ctx sdk.Context, baseDenom string, ex
9696
return k.bankKeeper.GetSupply(ctx, baseDenom).Amount.Sub(nonCirculating)
9797
}
9898

99-
func (k Keeper) TopN(ctx sdk.Context, baseDenom string, n int) []*types.Account {
99+
func (k Keeper) TopN(ctx sdk.Context, baseDenom string, n uint64) []*types.Account {
100100
accountMap := map[string]math.Int{}
101101

102102
modMap := map[string]bool{}
@@ -132,8 +132,8 @@ func (k Keeper) TopN(ctx sdk.Context, baseDenom string, n int) []*types.Account
132132
return accountSlice[i].Balance.GT(accountSlice[j].Balance)
133133
})
134134

135-
if n > len(accountSlice) {
136-
n = len(accountSlice)
135+
if n > uint64(len(accountSlice)) {
136+
n = uint64(len(accountSlice))
137137
}
138138

139139
return accountSlice[:n]

0 commit comments

Comments
 (0)