Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
I
interface
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
LuckySwap
interface
Commits
8d9ddf36
Unverified
Commit
8d9ddf36
authored
Jan 19, 2023
by
Zach Pomerantz
Committed by
GitHub
Jan 19, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: display specific gas estimation error (#5863)
parent
6cfd5fa4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
+2
-3
useUniversalRouter.ts
src/hooks/useUniversalRouter.ts
+2
-3
No files found.
src/hooks/useUniversalRouter.ts
View file @
8d9ddf36
...
@@ -56,9 +56,8 @@ export function useUniversalRouterSwapCallback(
...
@@ -56,9 +56,8 @@ export function useUniversalRouterSwapCallback(
try
{
try
{
gasEstimate
=
await
provider
.
estimateGas
(
tx
)
gasEstimate
=
await
provider
.
estimateGas
(
tx
)
}
catch
(
gasError
)
{
}
catch
(
gasError
)
{
await
provider
.
call
(
tx
)
// this should throw the actual error
console
.
warn
(
gasError
)
// If the actual error is not thrown, just try again:
throw
new
InvalidSwapError
(
'
Gas estimation failed. Wait a few minutes and try again.
'
)
gasEstimate
=
await
provider
.
estimateGas
(
tx
)
}
}
const
gasLimit
=
calculateGasMargin
(
gasEstimate
)
const
gasLimit
=
calculateGasMargin
(
gasEstimate
)
const
response
=
await
provider
const
response
=
await
provider
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment