mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
Merge pull request #5112 from MetaMask/hardware-wallet-fixes
Hardware wallet fixes
This commit is contained in:
commit
282820c93a
@ -668,7 +668,9 @@ module.exports = class MetamaskController extends EventEmitter {
|
||||
this.preferencesController.setAddresses(newAccounts)
|
||||
newAccounts.forEach(address => {
|
||||
if (!oldAccounts.includes(address)) {
|
||||
this.preferencesController.setAccountLabel(address, `${deviceName.toUpperCase()} ${parseInt(index, 10) + 1}`)
|
||||
// Set the account label to Trezor 1 / Ledger 1, etc
|
||||
this.preferencesController.setAccountLabel(address, `${deviceName[0].toUpperCase()}${deviceName.slice(1)} ${parseInt(index, 10) + 1}`)
|
||||
// Select the account
|
||||
this.preferencesController.setSelectedAddress(address)
|
||||
}
|
||||
})
|
||||
@ -800,7 +802,8 @@ module.exports = class MetamaskController extends EventEmitter {
|
||||
// Remove account from the preferences controller
|
||||
this.preferencesController.removeAddress(address)
|
||||
// Remove account from the account tracker controller
|
||||
this.accountTracker.removeAccount(address)
|
||||
this.accountTracker.removeAccount([address])
|
||||
|
||||
// Remove account from the keyring
|
||||
await this.keyringController.removeAccount(address)
|
||||
return address
|
||||
|
@ -573,7 +573,7 @@ describe('MetaMaskController', function () {
|
||||
assert(metamaskController.preferencesController.removeAddress.calledWith(addressToRemove))
|
||||
})
|
||||
it('should call accountTracker.removeAccount', async function () {
|
||||
assert(metamaskController.accountTracker.removeAccount.calledWith(addressToRemove))
|
||||
assert(metamaskController.accountTracker.removeAccount.calledWith([addressToRemove]))
|
||||
})
|
||||
it('should call keyringController.removeAccount', async function () {
|
||||
assert(metamaskController.keyringController.removeAccount.calledWith(addressToRemove))
|
||||
|
Loading…
Reference in New Issue
Block a user