This repository has been archived by the owner on Oct 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 794
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(providers): Propogate gas limit with access list (#901)
* fix(providers): Propogate gas price with access list * Update CHANGELOG.md * Fix clippy lint * Clarify fill_transaction comments * Fill tx gas price before gas limit Updates Provider::fill_transaction() to fill the gas price of a transaction before filling the gas limit. There are cases where the gas used by a transaction may be dependent on the gas price. For example, the following contract bytecode branches based on the result of the GASPRICE opcode: GASPRICE PUSH1 0xff GT PUSH1 {label} JUMPI * Cleanup * Propogate eth_estimateGas failure
- Loading branch information
Showing
2 changed files
with
175 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters