fix: save transaction file

This commit is contained in:
Abdalhamid Alhamad
2025-07-31 14:11:53 +03:00
parent 7e63abb2fb
commit f9776e60cf

View File

@ -37,7 +37,7 @@ export class TransactionService {
@Transactional()
async createAccountTransaction(body: AccountTransactionWebhookRequest) {
const account = await this.accountService.getAccountByReferenceNumber(body.accountId);
const account = await this.accountService.getAccountByAccountNumber(body.accountId);
const existingTransaction = await this.findExistingTransaction(body.transactionId, account.accountReference);