Skip to content

Commit

Permalink
fix!: credit/debit
Browse files Browse the repository at this point in the history
  • Loading branch information
brokeyourbike committed Jan 16, 2025
1 parent aef65b5 commit 57ddfcb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ public function domesticTransfer(TransactionInterface $transaction): Transaction

$response = $this->performRequest(HttpMethodEnum::POST, 'ProvidusFundTransfer', [
'transactionReference' => $transaction->getReference(),
'creditAccount' => $this->config->getSourceAccountNumber(),
'debitAccount' => $transaction->getBankAccount(),
'creditAccount' => $transaction->getBankAccount(),
'debitAccount' => $this->config->getSourceAccountNumber(),
'currencyCode' => $transaction->getCurrencyCode(),
'transactionAmount' => $transaction->getAmount(),
'narration' => $transaction->getDescription(),
Expand Down

0 comments on commit 57ddfcb

Please sign in to comment.