diff --git a/src/celo/fees.ts b/src/celo/fees.ts index d77173c98d..3496cb641f 100644 --- a/src/celo/fees.ts +++ b/src/celo/fees.ts @@ -21,9 +21,7 @@ export const fees: ChainFees = { estimateFeesPerGas: async ( params: ChainEstimateFeesPerGasFnParameters, ) => { - if (!params.request?.feeCurrency) { - return null - } + if (!params.request?.feeCurrency) return null const [maxFeePerGas, maxPriorityFeePerGas] = await Promise.all([ estimateFeePerGasInFeeCurrency(params.client, params.request.feeCurrency),