Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
affanv14 committed Sep 12, 2024
1 parent 388ee23 commit f5870b1
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion protocol/x/affiliates/keeper/msg_server.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,10 @@ func (k msgServer) UpdateAffiliateTiers(ctx context.Context,
)
}

k.Keeper.UpdateAffiliateTiers(sdkCtx, msg.Tiers)
err = k.Keeper.UpdateAffiliateTiers(sdkCtx, msg.Tiers)
if err != nil {
return nil, err
}

return &types.MsgUpdateAffiliateTiersResponse{}, nil
}
Expand Down

0 comments on commit f5870b1

Please sign in to comment.