Skip to content

Commit 7b65434

Browse files
authored
Merge branch 'release/13.10.1' into token_rate_fix
2 parents 141261c + e377454 commit 7b65434

File tree

5 files changed

+6
-4
lines changed

5 files changed

+6
-4
lines changed

app/scripts/controller-init/token-balances-controller-init.test.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ describe('TokenBalancesControllerInit', () => {
7272
queryMultipleAccounts: true,
7373
allowExternalServices: expect.any(Function),
7474
accountsApiChainIds: expect.any(Function),
75+
platform: 'extension',
7576
});
7677
});
7778
});

app/scripts/controller-init/token-balances-controller-init.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ export const TokenBalancesControllerInit: ControllerInitFunction<
3333
? (featureFlagForAccountApiBalances as `0x${string}`[])
3434
: [];
3535
},
36+
platform: 'extension',
3637
});
3738

3839
return {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "metamask-crx",
3-
"version": "13.10.0",
3+
"version": "13.10.1",
44
"private": true,
55
"repository": {
66
"type": "git",

ui/hooks/useAssetsUpdateAllAccountBalances.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ describe('useAssetsUpdateAllAccountBalances', () => {
130130
expect(mockDispatch).toHaveBeenCalledTimes(1);
131131
expect(mockUpdateBalancesFoAccounts).toHaveBeenCalledWith(
132132
initialChainIds,
133-
true,
133+
false,
134134
);
135135

136136
// Update chain IDs and rerender
@@ -140,7 +140,7 @@ describe('useAssetsUpdateAllAccountBalances', () => {
140140
expect(mockDispatch).toHaveBeenCalledTimes(2);
141141
expect(mockUpdateBalancesFoAccounts).toHaveBeenCalledWith(
142142
updatedChainIds,
143-
true,
143+
false,
144144
);
145145
});
146146

ui/hooks/useAssetsUpdateAllAccountBalances.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export const useAssetsUpdateAllAccountBalances = (): {
3737
// Update balance state for ALL accounts across all enabled EVM chains
3838
// TokenBalancesController is configured with queryMultipleAccounts: true
3939
// so this will update balances for all accounts, not just the selected one
40-
await dispatch(updateBalancesFoAccounts(enabledChainIds, true));
40+
await dispatch(updateBalancesFoAccounts(enabledChainIds, false));
4141
}
4242
} catch (error) {
4343
console.warn('Error updating balances state for all accounts', error);

0 commit comments

Comments
 (0)