diff --git a/AlphaWallet/Transfer/Controllers/TransactionConfigurator.swift b/AlphaWallet/Transfer/Controllers/TransactionConfigurator.swift index 956fadeea..2eb4aa71d 100644 --- a/AlphaWallet/Transfer/Controllers/TransactionConfigurator.swift +++ b/AlphaWallet/Transfer/Controllers/TransactionConfigurator.swift @@ -239,6 +239,8 @@ class TransactionConfigurator { let estimator = EtherscanGasPriceEstimator() return firstly { estimator.fetch(server: server) + }.get { estimates in + infoLog("Estimated gas price with gas price estimator API: \(estimates)") }.map { estimates in GasEstimates(standard: BigInt(estimates.standard), others: [ TransactionConfigurationType.slow: BigInt(estimates.slow),