diff --git a/app/Modules/OnlinePayment/Repositories/OnlinePaymentRepository.php b/app/Modules/OnlinePayment/Repositories/OnlinePaymentRepository.php index bde48bd..b8aab54 100644 --- a/app/Modules/OnlinePayment/Repositories/OnlinePaymentRepository.php +++ b/app/Modules/OnlinePayment/Repositories/OnlinePaymentRepository.php @@ -270,10 +270,6 @@ class OnlinePaymentRepository $this->provider->setPassword($password); $response = $this->provider->checkPayment($orderId); - if ($response['errorCode'] == '99') { - return $this->paymentFailed('(REQUEST FAILURE)'); - } - if ($response['errorCode'] != '0') { return $this->paymentFailed($response['errorMessage']); }