Skip to content

Commit

Permalink
fix(pickk-pay-client): 🐛 fix Inicis.getTransaction parameter error
Browse files Browse the repository at this point in the history
  • Loading branch information
greatSumini committed Jul 5, 2021
1 parent 2b8b6fe commit d1252d3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions services/pickk-pay-client/.eslintrc
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
{
"extends": "next",
"project": "./tsconfig.json"
"extends": "next"
}
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const inicisMobVbankNotiHandler = async (req: NowRequest, res: NowResponse) => {
throw new BadRequestException('입금되지 않은 거래건입니다.');
}

const transaction = await Inicis.getTransaction(payload.P_OID);
const transaction = await Inicis.getTransaction(null, payload.P_OID);

// 거래 조회 실패함
if (transaction.resultCode !== '00') {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ const inicisStdVbankNotiHandler = async (req: NowRequest, res: NowResponse) => {
);
}

const transaction = await Inicis.getTransaction(payload.no_oid);
const transaction = await Inicis.getTransaction(null, payload.no_oid);

// 거래 조회 실패함
if (transaction.resultCode !== '00') {
Expand Down

1 comment on commit d1252d3

@vercel
Copy link

@vercel vercel bot commented on d1252d3 Jul 5, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.