Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix lint
  • Loading branch information
vinistevam committed Dec 9, 2025
commit 55daea2b3c772812e1b7ac8604eb48a3eeddab3c
1 change: 1 addition & 0 deletions packages/transaction-controller/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Changed

- **BREAKING**: Remove `history` and `sendFlowHistory` properties from `TransactionMeta` ([#7326](https://github.com/MetaMask/core/pull/7326))
- Bump `@metamask/remote-feature-flag-controller` from `^2.0.1` to `^3.0.0` ([#7309](https://github.com/MetaMask/core/pull/7309)

## [62.4.0]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -353,11 +353,10 @@ function waitForTransactionFinished(
});
}

const MOCK_PREFERENCES = { state: { selectedAddress: 'foo' } };
const INFURA_PROJECT_ID = 'testinfuraid';
const HTTP_PROVIDERS = {
sepolia: new HttpProvider('https://sepolia.infura.io/v3/sepolia-pid'),
// TODO: Investigate and address why tests break when mainet has a different INFURA_PROJECT_ID
// TODO: Investigate and address why tests break when mainnet has a different INFURA_PROJECT_ID
mainnet: new HttpProvider(
`https://mainnet.infura.io/v3/${INFURA_PROJECT_ID}`,
),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,6 @@ export function waitForTransactionConfirmed(
* @param request - Request object.
* @param request.transactionId - ID of the transaction to update.
* @param request.messenger - Controller messenger.
* @param request.note - Note describing the update.
* @param fn - Function that applies updates to the transaction draft.
*/
export function updateTransaction(
Expand Down