File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -130,6 +130,7 @@ pub async fn payments_create(
130
130
state,
131
131
req_state,
132
132
auth. merchant_account ,
133
+ None ,
133
134
auth. key_store ,
134
135
HeaderPayload :: default ( ) ,
135
136
req,
@@ -422,6 +423,7 @@ pub async fn payments_update(
422
423
state,
423
424
req_state,
424
425
auth. merchant_account ,
426
+ None ,
425
427
auth. key_store ,
426
428
HeaderPayload :: default ( ) ,
427
429
req,
@@ -500,6 +502,7 @@ pub async fn payments_confirm(
500
502
state,
501
503
req_state,
502
504
auth. merchant_account ,
505
+ None ,
503
506
auth. key_store ,
504
507
header_payload. clone ( ) ,
505
508
req,
@@ -1176,6 +1179,7 @@ async fn authorize_verify_select<Op>(
1176
1179
state : app:: SessionState ,
1177
1180
req_state : ReqState ,
1178
1181
merchant_account : domain:: MerchantAccount ,
1182
+ profile_id : Option < String > ,
1179
1183
key_store : domain:: MerchantKeyStore ,
1180
1184
header_payload : HeaderPayload ,
1181
1185
req : api_models:: payments:: PaymentsRequest ,
@@ -1211,7 +1215,7 @@ where
1211
1215
state,
1212
1216
req_state,
1213
1217
merchant_account,
1214
- None ,
1218
+ profile_id ,
1215
1219
key_store,
1216
1220
operation,
1217
1221
req,
@@ -1232,7 +1236,7 @@ where
1232
1236
state,
1233
1237
req_state,
1234
1238
merchant_account,
1235
- None ,
1239
+ profile_id ,
1236
1240
key_store,
1237
1241
operation,
1238
1242
req,
You can’t perform that action at this time.
0 commit comments