From 5acdf5cf0ebc738785c63db20185b909444f1ae0 Mon Sep 17 00:00:00 2001 From: Sk Sakil Mostak Date: Tue, 5 Aug 2025 12:33:10 +0530 Subject: [PATCH] fix: wise payout --- .../hyperswitch_connectors/src/connectors/wise/transformers.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/hyperswitch_connectors/src/connectors/wise/transformers.rs b/crates/hyperswitch_connectors/src/connectors/wise/transformers.rs index f844e15a488..f89e19f78ca 100644 --- a/crates/hyperswitch_connectors/src/connectors/wise/transformers.rs +++ b/crates/hyperswitch_connectors/src/connectors/wise/transformers.rs @@ -510,7 +510,7 @@ impl TryFrom<&PayoutsRouterData> for WisePayoutCreateRequest { Ok(Self { target_account, quote_uuid, - customer_transaction_id: request.payout_id.get_string_repr().to_string(), + customer_transaction_id: uuid::Uuid::new_v4().to_string(), details: wise_transfer_details, }) }