@metamask-previews/transaction-controller 62.9.1-preview-2d6574b9 → 62.9.1-preview-fd4aea5a

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ### Fixed
11
+
12
+ - Exclude transactions where `isTransfer` is defined when marking nonce duplicates as dropped ([#7637](https://github.com/MetaMask/core/pull/7637))
13
+
10
14
  ## [62.9.1]
11
15
 
12
16
  ### Changed
@@ -1925,7 +1925,8 @@ async function _TransactionController_approveTransaction(transactionId, traceCon
1925
1925
  nonce &&
1926
1926
  transaction.txParams.nonce === nonce &&
1927
1927
  transaction.chainId === chainId &&
1928
- transaction.type !== types_1.TransactionType.incoming);
1928
+ transaction.type !== types_1.TransactionType.incoming &&
1929
+ transaction.isTransfer === undefined);
1929
1930
  const sameNonceTransactionIds = sameNonceTransactions.map((transaction) => transaction.id);
1930
1931
  if (sameNonceTransactions.length === 0) {
1931
1932
  return;