diff --git a/UnstoppableWallet/UnstoppableWallet/Modules/EvmSendSettings/Fee/Eip1559/Eip1559GasPriceService.swift b/UnstoppableWallet/UnstoppableWallet/Modules/EvmSendSettings/Fee/Eip1559/Eip1559GasPriceService.swift index 03f2bf0394..16d88bc9fa 100644 --- a/UnstoppableWallet/UnstoppableWallet/Modules/EvmSendSettings/Fee/Eip1559/Eip1559GasPriceService.swift +++ b/UnstoppableWallet/UnstoppableWallet/Modules/EvmSendSettings/Fee/Eip1559/Eip1559GasPriceService.swift @@ -113,7 +113,7 @@ class Eip1559GasPriceService { recommendedTips = max(recommendedTips, minRecommendedTips) } - recommendedMaxFee = baseFeesConsidered.max() ?? 0 + recommendedTips + recommendedMaxFee = (baseFeesConsidered.max() ?? 0) + recommendedTips if let minRecommendedMaxFee { recommendedMaxFee = max(recommendedMaxFee, minRecommendedMaxFee) }