Skip to content

Commit c2ad200

Browse files
authored
feat(connector): [ACI] Use connector_request_reference_id as reference to the connector (#2549)
Signed-off-by: Azanul <[email protected]>
1 parent 7eabd24 commit c2ad200

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,9 @@ impl
203203
bank_account_iban: None,
204204
billing_country: Some(country.to_owned()),
205205
merchant_customer_id: Some(Secret::new(item.get_customer_id()?)),
206-
merchant_transaction_id: Some(Secret::new(item.payment_id.clone())),
206+
merchant_transaction_id: Some(Secret::new(
207+
item.connector_request_reference_id.clone(),
208+
)),
207209
customer_email: None,
208210
}))
209211
}

0 commit comments

Comments
 (0)