Skip to content

Commit

Permalink
fix lint issue
Browse files Browse the repository at this point in the history
  • Loading branch information
pythonberg1997 committed Aug 1, 2023
1 parent 736af7f commit cefb647
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions x/storage/keeper/grpc_query.go
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ func validateAndGetId(req *types.QueryNFTRequest) (math.Uint, error) {
}

func (k Keeper) QueryPolicyForAccount(goCtx context.Context, req *types.QueryPolicyForAccountRequest) (*types.
QueryPolicyForAccountResponse,
QueryPolicyForAccountResponse,
error,
) {
if req == nil {
Expand Down Expand Up @@ -403,7 +403,7 @@ QueryPolicyForAccountResponse,
}

func (k Keeper) QueryPolicyForGroup(goCtx context.Context, req *types.QueryPolicyForGroupRequest) (*types.
QueryPolicyForGroupResponse, error,
QueryPolicyForGroupResponse, error,
) {
if req == nil {
return nil, status.Error(codes.InvalidArgument, "invalid request")
Expand Down Expand Up @@ -547,7 +547,7 @@ func (k Keeper) HeadGroupMember(goCtx context.Context, req *types.QueryHeadGroup
}

func (k Keeper) QueryPolicyById(goCtx context.Context, req *types.QueryPolicyByIdRequest) (*types.
QueryPolicyByIdResponse, error,
QueryPolicyByIdResponse, error,
) {
if req == nil {
return nil, status.Error(codes.InvalidArgument, "invalid request")
Expand Down

0 comments on commit cefb647

Please sign in to comment.