Skip to content

Commit

Permalink
[test] CI/CD 테스트
Browse files Browse the repository at this point in the history
  • Loading branch information
edder773 committed Dec 4, 2024
1 parent 990377f commit d759af9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/backend/src/account/guards/hasSufficientCashGuard.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export class HasSufficientCashGuard implements CanActivate {
const { tradingType, price, quantity, totalAmount } = request.body;

let hasEnoughCash = false;
// 지정가 주문 확인
// 지정가 주문
if (tradingType === 'limit') {
hasEnoughCash = await this.canLimitBuyOrder(price, memberId, quantity);
} else if (tradingType === 'market') {
Expand Down

0 comments on commit d759af9

Please sign in to comment.