fix: remove gasPrice property from linea_estimateGas request #4737
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Explanation
The
LineaGasFeeFlow
in theTransactionController
aims to provide more accurate gas fee estimates derived from a specific transaction, rather than just at the network level.This is achieved via a request to the custom
linea_estimateGas
RPC method on the provider.Originally, the
gasPrice
property was necessary to prevent a bug, but now that issue has been fixed remotely, it is itself causing an alternate bug that returns the following error mesage:transaction up-front cost 0x16e360000000000 exceeds transaction sender account balance 0x7b2c1918e11642
This PR simply removes the
gasPrice
property from the request.References
Changelog
Checklist