From 567116a948c7525cc264db6d3addf0e959c4c5f1 Mon Sep 17 00:00:00 2001 From: Danny Browning Date: Wed, 5 Apr 2023 17:54:26 -0600 Subject: [PATCH] fix non eip-1559 path --- src/services/blockchain/ethereum/ethereum-blockchain-service.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/services/blockchain/ethereum/ethereum-blockchain-service.ts b/src/services/blockchain/ethereum/ethereum-blockchain-service.ts index f813412c4..711556e5c 100644 --- a/src/services/blockchain/ethereum/ethereum-blockchain-service.ts +++ b/src/services/blockchain/ethereum/ethereum-blockchain-service.ts @@ -258,7 +258,6 @@ export class EthereumBlockchainService implements BlockchainService { const prevGasPrice = BigInt(txData.gasPrice || feeDataGasPrice) txData.gasPrice = EthereumBlockchainService.increaseGasPricePerAttempt( feeDataGasPrice, - attempt, prevGasPrice ) logger.debug(`Estimated gasPrice: ${txData.gasPrice.toString()} wei`)