Skip to content

Commit

Permalink
fix: Gas fees estimate is too high (#276)
Browse files Browse the repository at this point in the history
  • Loading branch information
alainncls authored Dec 19, 2024
1 parent 7a739cd commit 8f9dcbe
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions packages/linea-ens-app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ens-app-v2",
"version": "0.1.123",
"version": "0.1.124",
"scripts": {
"dev": "NODE_NO_WARNINGS=1 next dev",
"dev:https": "next-dev-https --https --qr --port 3000",
Expand Down Expand Up @@ -209,4 +209,4 @@
"@wagmi/[email protected]": "patches/@[email protected]"
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ export const createTransactionRequestQueryFn =
account: connectorClient.account,
data: transactionRequest.data,
gas: gasLimit,
parameters: ['fees', 'nonce', 'type'],
parameters: ['nonce', 'type'],
...('value' in transactionRequest ? { value: transactionRequest.value } : {}),
})

Expand Down

0 comments on commit 8f9dcbe

Please sign in to comment.