From 683fbf45e7788bec537d9f90e3d4f3c6926693a5 Mon Sep 17 00:00:00 2001 From: Tangem Date: Wed, 16 Sep 2020 15:09:11 +0300 Subject: [PATCH] Updated on 2026-08-14 --- .../features/send/redux/middlewares/AddressPayIdMiddleware.kt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/src/main/java/com/tangem/tap/features/send/redux/middlewares/AddressPayIdMiddleware.kt b/app/src/main/java/com/tangem/tap/features/send/redux/middlewares/AddressPayIdMiddleware.kt index ab345e9e35..b0169f3df7 100644 --- a/app/src/main/java/com/tangem/tap/features/send/redux/middlewares/AddressPayIdMiddleware.kt +++ b/app/src/main/java/com/tangem/tap/features/send/redux/middlewares/AddressPayIdMiddleware.kt @@ -7,6 +7,7 @@ import com.tangem.tap.common.redux.AppState import com.tangem.tap.domain.PayIdManager import com.tangem.tap.domain.isPayIdSupported import com.tangem.tap.features.send.redux.AddressPayIdVerifyAction.* +import com.tangem.tap.features.send.redux.FeeAction import com.tangem.tap.scope import kotlinx.coroutines.Dispatchers import kotlinx.coroutines.launch @@ -63,6 +64,7 @@ internal class AddressPayIdMiddleware { if (failReason == null) { dispatch(PayIdVerification.SetPayIdWalletAddress(payId, address)) + dispatch(FeeAction.RequestFee) } else { dispatch(AddressVerification.SetError(payId, failReason)) }