mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
Merge pull request #768 from MetaMask/i762-RenameWalletToAccount
Rename wallet to account
This commit is contained in:
commit
0bad941433
@ -3,6 +3,7 @@
|
|||||||
## Current Master
|
## Current Master
|
||||||
|
|
||||||
- Add a check for improper Transaction data.
|
- Add a check for improper Transaction data.
|
||||||
|
- Now nicknaming new accounts "Account #" instead of "Wallet #" for clarity.
|
||||||
- Fix bug where custom provider selection could show duplicate items.
|
- Fix bug where custom provider selection could show duplicate items.
|
||||||
- Fix bug where connecting to a local morden node would make two providers appear selected.
|
- Fix bug where connecting to a local morden node would make two providers appear selected.
|
||||||
- Fix bug that was sometimes preventing transactions from being sent.
|
- Fix bug that was sometimes preventing transactions from being sent.
|
||||||
|
@ -426,7 +426,7 @@ IdentityStore.prototype._loadIdentities = function () {
|
|||||||
// // add to ethStore
|
// // add to ethStore
|
||||||
this._ethStore.addAccount(ethUtil.addHexPrefix(address))
|
this._ethStore.addAccount(ethUtil.addHexPrefix(address))
|
||||||
// add to identities
|
// add to identities
|
||||||
const defaultLabel = 'Wallet ' + (i + 1)
|
const defaultLabel = 'Account ' + (i + 1)
|
||||||
const nickname = configManager.nicknameForWallet(address)
|
const nickname = configManager.nicknameForWallet(address)
|
||||||
var identity = {
|
var identity = {
|
||||||
name: nickname || defaultLabel,
|
name: nickname || defaultLabel,
|
||||||
|
Loading…
Reference in New Issue
Block a user