Skip to content

Commit

Permalink
chore: linting
Browse files Browse the repository at this point in the history
  • Loading branch information
vuong177 committed Oct 25, 2023
1 parent 1124ffa commit ea20497
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion x/transfermiddleware/keeper/grpc_query.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ func (k Keeper) RelayerAccount(c context.Context, req *types.QueryIBCWhiteListRe
iter := prefixStore.Iterator(nil, nil)
defer iter.Close()

pageRes, err := sdkquery.FilteredPaginate(prefixStore, req.Pagination, func(key []byte, _ []byte, accumulate bool) (bool, error) {
pageRes, err := sdkquery.FilteredPaginate(prefixStore, req.Pagination, func(key, _ []byte, accumulate bool) (bool, error) {
if accumulate {
whiteList = append(whiteList, string(key))
}
Expand Down

0 comments on commit ea20497

Please sign in to comment.