diff --git a/ethers/signer.nim b/ethers/signer.nim index 3523599..e27aee6 100644 --- a/ethers/signer.nim +++ b/ethers/signer.nim @@ -137,7 +137,7 @@ method populateTransaction*( let maxPriorityFeePerGas = transaction.maxPriorityFeePerGas |? (await signer.provider.getMaxPriorityFeePerGas()) populated.maxPriorityFeePerGas = some(maxPriorityFeePerGas) - # Multiply by 2 because during times of congestion, it can increase by 12.5% per block. + # Multiply by 2 because during times of congestion, baseFeePerGas can increase by 12.5% per block. # https://github.com/ethers-io/ethers.js/discussions/3601#discussioncomment-4461273 let maxFeePerGas = baseFeePerGas * 2 + maxPriorityFeePerGas populated.maxFeePerGas = some(maxFeePerGas)