mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-11-01 11:06:50 +08:00
feat(klarna): wallet payment through klarna (#182)
This commit is contained in:
@ -144,7 +144,7 @@ pub trait Domain<F: Clone, R>: Send + Sync {
|
||||
}
|
||||
|
||||
#[async_trait]
|
||||
pub trait UpdateTracker<F, D, R>: Send {
|
||||
pub trait UpdateTracker<F, D, Req>: Send {
|
||||
async fn update_trackers<'b>(
|
||||
&'b self,
|
||||
db: &dyn StorageInterface,
|
||||
@ -152,7 +152,7 @@ pub trait UpdateTracker<F, D, R>: Send {
|
||||
payment_data: D,
|
||||
customer: Option<Customer>,
|
||||
storage_scheme: enums::MerchantStorageScheme,
|
||||
) -> RouterResult<(BoxedOperation<'b, F, R>, D)>
|
||||
) -> RouterResult<(BoxedOperation<'b, F, Req>, D)>
|
||||
where
|
||||
F: 'b + Send;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user