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 4c6724c commit 150d6f1
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 9 deletions.
8 changes: 0 additions & 8 deletions .dockerignore

This file was deleted.

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 150d6f1

Please sign in to comment.