Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion eslint-suppressions.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
"count": 1
},
"n/no-sync": {
"count": 22
"count": 29
}
},
"packages/account-tree-controller/src/backup-and-sync/service/index.ts": {
Expand Down
1 change: 1 addition & 0 deletions packages/account-tree-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

- The `Multichain Account Syncing - Full` trace is now only emitted when a backup-and-sync run actually mutates local or remote state (rolled-back local changes do not count) ([#9343](https://github.com/MetaMask/core/pull/9343))
- Bump `@metamask/keyring-api` from `^23.1.0` to `^23.3.0` ([#9249](https://github.com/MetaMask/core/pull/9249))
- Bump `@metamask/multichain-account-service` from `^11.0.0` to `^11.1.0` ([#9264](https://github.com/MetaMask/core/pull/9264))
- Bump `@metamask/accounts-controller` from `^39.0.3` to `^39.0.4` ([#9349](https://github.com/MetaMask/core/pull/9349))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ import {
} from './backup-and-sync/analytics';
import { BackupAndSyncService } from './backup-and-sync/service';
import type { BackupAndSyncContext } from './backup-and-sync/types';
import { createSyncMutationTracker } from './backup-and-sync/utils';
import type { AccountGroupObject, AccountTypeOrderKey } from './group';
import {
ACCOUNT_TYPE_TO_SORT_ORDER,
Expand Down Expand Up @@ -1803,6 +1804,7 @@ export class AccountTreeController extends BaseController<
controllerStateUpdateFn: this.update.bind(this),
traceFn: this.#trace.bind(this),
groupIdToWalletId: this.#groupIdToWalletId,
mutationTracker: createSyncMutationTracker(),
};
}
}
Loading