From e4b3cc790580f04012dba3d926e170dce4cec5d1 Mon Sep 17 00:00:00 2001 From: Sangamesh Kulkarni <59434228+Sangamesh26@users.noreply.github.com> Date: Thu, 21 Sep 2023 12:42:06 +0530 Subject: [PATCH] fix(connector): [Trustpay] Add missing error code (#2212) --- crates/router/src/connector/trustpay/transformers.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/router/src/connector/trustpay/transformers.rs b/crates/router/src/connector/trustpay/transformers.rs index d914833791..515f7cc92f 100644 --- a/crates/router/src/connector/trustpay/transformers.rs +++ b/crates/router/src/connector/trustpay/transformers.rs @@ -437,6 +437,7 @@ fn is_payment_failed(payment_status: &str) -> (bool, &'static str) { "800.100.190" => (true, "Transaction declined (invalid configuration data)"), "800.100.202" => (true, "Account Closed"), "800.120.100" => (true, "Rejected by throttling"), + "800.300.102" => (true, "Country blacklisted"), "800.300.401" => (true, "Bin blacklisted"), "800.700.100" => ( true,