refactor(helpers): rename order_id to payment_intent_client_secret (#285)

This commit is contained in:
Narayan Bhat
2023-01-04 17:24:32 +05:30
committed by GitHub
parent 9a4758291e
commit acb09b022c

View File

@ -1080,7 +1080,7 @@ pub fn make_merchant_url_with_response(
url, url,
&[ &[
("status", status_check.to_string()), ("status", status_check.to_string()),
("order_id", payment_intent_id), ("payment_intent_client_secret", payment_intent_id),
], ],
) )
.into_report() .into_report()
@ -1092,7 +1092,7 @@ pub fn make_merchant_url_with_response(
url, url,
&[ &[
("status", status_check.to_string()), ("status", status_check.to_string()),
("order_id", payment_intent_id), ("payment_intent_client_secret", payment_intent_id),
("amount", amount.to_string()), ("amount", amount.to_string()),
], ],
) )