Skip to content

Commit

Permalink
fix(wallet_event): fix issues from unit test due to merge conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
joonaun93 committed Oct 1, 2023
1 parent 89eaa15 commit 66e6ff6
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion server/services/TransferService.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,16 @@ class TransferService {
}

async getByFilter(query, walletLoginId) {
const { state, wallet, limit, offset, before, after } = query;
const {
state,
wallet,
limit,
offset,
before,
after,
sort_by,
order,
} = query;

let walletId;

Expand All @@ -33,6 +42,8 @@ class TransferService {
walletLoginId,
before,
after,
sort_by,
order,
});

return { transfers, count };
Expand Down

0 comments on commit 66e6ff6

Please sign in to comment.