From cefb6474ec791f8bc6e13b5d929d8d9d15e459f3 Mon Sep 17 00:00:00 2001 From: Roshan Date: Tue, 1 Aug 2023 16:10:21 +0800 Subject: [PATCH] fix lint issue --- x/storage/keeper/grpc_query.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/x/storage/keeper/grpc_query.go b/x/storage/keeper/grpc_query.go index 29dbcd424..f4affc3d8 100644 --- a/x/storage/keeper/grpc_query.go +++ b/x/storage/keeper/grpc_query.go @@ -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 { @@ -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") @@ -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")