From acb09b022ccc10ddcd373d5fd6cf38ccaae67f2a Mon Sep 17 00:00:00 2001 From: Narayan Bhat <48803246+Narayanbhat166@users.noreply.github.com> Date: Wed, 4 Jan 2023 17:24:32 +0530 Subject: [PATCH] refactor(helpers): rename order_id to payment_intent_client_secret (#285) --- crates/router/src/core/payments/helpers.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/router/src/core/payments/helpers.rs b/crates/router/src/core/payments/helpers.rs index 02bc696126..37fa06a427 100644 --- a/crates/router/src/core/payments/helpers.rs +++ b/crates/router/src/core/payments/helpers.rs @@ -1080,7 +1080,7 @@ pub fn make_merchant_url_with_response( url, &[ ("status", status_check.to_string()), - ("order_id", payment_intent_id), + ("payment_intent_client_secret", payment_intent_id), ], ) .into_report() @@ -1092,7 +1092,7 @@ pub fn make_merchant_url_with_response( url, &[ ("status", status_check.to_string()), - ("order_id", payment_intent_id), + ("payment_intent_client_secret", payment_intent_id), ("amount", amount.to_string()), ], )