diff --git a/crates/router/src/core/payment_methods/utils.rs b/crates/router/src/core/payment_methods/utils.rs index 0aad7190893..1afdaaab062 100644 --- a/crates/router/src/core/payment_methods/utils.rs +++ b/crates/router/src/core/payment_methods/utils.rs @@ -590,7 +590,7 @@ fn compile_accepted_countries_for_mca( .map_err(KgraphError::GraphConstructionError)?; agg_nodes.push(( pm_object_country_value_node, - cgraph::Relation::Positive, + cgraph::Relation::Negative, cgraph::Strength::Weak, )); } @@ -712,7 +712,7 @@ fn compile_accepted_currency_for_mca( .map_err(KgraphError::GraphConstructionError)?; agg_nodes.push(( pm_object_currency_value_node, - cgraph::Relation::Positive, + cgraph::Relation::Negative, cgraph::Strength::Weak, )); }