feat(klarna): wallet payment through klarna (#182)

This commit is contained in:
Narayan Bhat
2022-12-23 00:59:18 +05:30
committed by GitHub
parent 5477cc98ff
commit 06a3c38bd4
14 changed files with 351 additions and 53 deletions

View File

@ -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;
}