diff --git a/app/src/main/java/com/tangem/tap/features/send/redux/reducers/FeeReducer.kt b/app/src/main/java/com/tangem/tap/features/send/redux/reducers/FeeReducer.kt index edb435953f..fd653557c7 100644 --- a/app/src/main/java/com/tangem/tap/features/send/redux/reducers/FeeReducer.kt +++ b/app/src/main/java/com/tangem/tap/features/send/redux/reducers/FeeReducer.kt @@ -106,8 +106,12 @@ class FeeReducer : SendInternalReducer { private fun getFeePrecision(sendState: SendState): FeePrecision { val blockchain = sendState.walletManager?.wallet?.blockchain - return if ((blockchain?.fullNameWithoutTestnet == Blockchain.Arbitrum.fullName || blockchain?.fullNameWithoutTestnet == Blockchain.Tron.fullName) && - sendState.amountState.typeOfAmount is AmountType.Token) { + return if ( + (blockchain?.fullNameWithoutTestnet == Blockchain.Arbitrum.fullName || + blockchain?.fullNameWithoutTestnet == Blockchain.Tron.fullName || + blockchain?.fullNameWithoutTestnet == Blockchain.Gnosis.fullName) && + sendState.amountState.typeOfAmount is AmountType.Token + ) { FeePrecision.CAN_BE_LOWER } else { FeePrecision.PRECISE