Skip to content

Commit 5b31b0e

Browse files
authored
fix(connector): [Wise] send uuid as connector_transaction_id (#8837)
1 parent 0125d98 commit 5b31b0e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/hyperswitch_connectors/src/connectors/wise/transformers.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -510,7 +510,7 @@ impl<F> TryFrom<&PayoutsRouterData<F>> for WisePayoutCreateRequest {
510510
Ok(Self {
511511
target_account,
512512
quote_uuid,
513-
customer_transaction_id: request.payout_id.get_string_repr().to_string(),
513+
customer_transaction_id: uuid::Uuid::new_v4().to_string(),
514514
details: wise_transfer_details,
515515
})
516516
}

0 commit comments

Comments
 (0)