From 3e5dcecf0635c91eda3a7b004a8620a40d9abfdb Mon Sep 17 00:00:00 2001 From: David Bomba Date: Fri, 6 May 2022 10:55:35 +1000 Subject: [PATCH] Minor fixes for gocardless ACH --- app/PaymentDrivers/GoCardless/ACH.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/PaymentDrivers/GoCardless/ACH.php b/app/PaymentDrivers/GoCardless/ACH.php index f10c36566..9c71d41f3 100644 --- a/app/PaymentDrivers/GoCardless/ACH.php +++ b/app/PaymentDrivers/GoCardless/ACH.php @@ -190,7 +190,7 @@ class ACH implements MethodInterface if ($payment->status === 'pending_submission') { - return $this->processPendingPayment($payment, ['token' => $token->hashed_id]); + return $this->processPendingPayment($payment); } return $this->processUnsuccessfulPayment($payment);