Skip to content

Commit e4b3cc7

Browse files
authored
fix(connector): [Trustpay] Add missing error code (#2212)
1 parent 2a9e09d commit e4b3cc7

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

crates/router/src/connector/trustpay/transformers.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -437,6 +437,7 @@ fn is_payment_failed(payment_status: &str) -> (bool, &'static str) {
437437
"800.100.190" => (true, "Transaction declined (invalid configuration data)"),
438438
"800.100.202" => (true, "Account Closed"),
439439
"800.120.100" => (true, "Rejected by throttling"),
440+
"800.300.102" => (true, "Country blacklisted"),
440441
"800.300.401" => (true, "Bin blacklisted"),
441442
"800.700.100" => (
442443
true,

0 commit comments

Comments
 (0)