Skip to content

Commit 497deab

Browse files
committed
lint fix
1 parent 4834aa5 commit 497deab

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

packages/thirdweb/src/gas/fee-data.ts

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -137,12 +137,16 @@ export async function getDefaultGasOverrides(
137137
resolvedFeeType === "legacy" ||
138138
FORCE_GAS_PRICE_CHAIN_IDS.includes(chain.id)
139139
) {
140-
const gasPrice = await getGasPrice({ chain, client, percentMultiplier: 10 })
141-
if(chain.id === 88 || chain.id === 89) {
140+
const gasPrice = await getGasPrice({
141+
chain,
142+
client,
143+
percentMultiplier: 10,
144+
})
145+
if (chain.id === 88 || chain.id === 89) {
142146
return {
143147
maxPriorityFeePerGas: gasPrice || 0n,
144-
maxFeePerGas: gasPrice || 0n
145-
}
148+
maxFeePerGas: gasPrice || 0n,
149+
};
146150
}
147151

148152
return {

0 commit comments

Comments
 (0)