Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
affanv14 committed Aug 22, 2024
1 parent a354ac3 commit 8cc8d49
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions protocol/x/affiliates/keeper/grpc_query.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,17 @@ import (

var _ types.QueryServer = Keeper{}

func (k Keeper) AffiliateInfo(c context.Context, req *types.AffiliateInfoRequest) (*types.AffiliateInfoResponse, error) {
func (k Keeper) AffiliateInfo(c context.Context,
req *types.AffiliateInfoRequest) (*types.AffiliateInfoResponse, error) {
return nil, nil
}

func (k Keeper) ReferredBy(ctx context.Context, req *types.ReferredByRequest) (*types.ReferredByResponse, error) {
func (k Keeper) ReferredBy(ctx context.Context,
req *types.ReferredByRequest) (*types.ReferredByResponse, error) {
return nil, nil
}

func (k Keeper) AllAffiliateTiers(c context.Context, req *types.AllAffiliateTiersRequest) (*types.AllAffiliateTiersResponse, error) {
func (k Keeper) AllAffiliateTiers(c context.Context,
req *types.AllAffiliateTiersRequest) (*types.AllAffiliateTiersResponse, error) {
return nil, nil
}

0 comments on commit 8cc8d49

Please sign in to comment.