Skip to content

Commit

Permalink
fix: remove gasPrice property from linea_estimateGas request (#4737)
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewwalsh0 authored Sep 26, 2024
1 parent 1999f66 commit 66c94ae
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 4 additions & 0 deletions packages/transaction-controller/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Fixed

- Remove `gasPrice` from requests to `linea_estimateGas` ([#4737](https://github.com/MetaMask/core/pull/4737))

## [37.1.0]

### Added
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -116,8 +116,6 @@ export class LineaGasFeeFlow implements GasFeeFlow {
to: transactionMeta.txParams.to,
value: transactionMeta.txParams.value,
input: transactionMeta.txParams.data,
// Required in request but no impact on response.
gasPrice: '0x100000000',
},
]);
}
Expand Down

0 comments on commit 66c94ae

Please sign in to comment.