We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e19c16 commit 26b6a67Copy full SHA for 26b6a67
packages/thirdweb/src/wallets/smart/lib/userop.ts
@@ -270,9 +270,9 @@ async function getGasFees(args: {
270
resolvedMaxPriorityFeePerGas ?? feeData.maxPriorityFeePerGas ?? 0n;
271
maxFeePerGas = resolvedMaxFeePerGas ?? feeData.maxFeePerGas ?? 0n;
272
273
- if(chain.id === 88 || chain.id === 89) {
274
- maxPriorityFeePerGas = maxPriorityFeePerGas || feeData.gasPrice || 0n
275
- maxFeePerGas = maxFeePerGas || feeData.gasPrice || 0n
+ if (chain.id === 88 || chain.id === 89) {
+ maxPriorityFeePerGas = maxPriorityFeePerGas || feeData.gasPrice || 0n;
+ maxFeePerGas = maxFeePerGas || feeData.gasPrice || 0n;
276
}
277
278
0 commit comments