1
0
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:
Dan Finlay 2016-10-26 11:43:52 -07:00 committed by GitHub
commit 0bad941433
2 changed files with 2 additions and 1 deletions

View File

@ -3,6 +3,7 @@
## Current Master
- 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 connecting to a local morden node would make two providers appear selected.
- Fix bug that was sometimes preventing transactions from being sent.

View File

@ -426,7 +426,7 @@ IdentityStore.prototype._loadIdentities = function () {
// // add to ethStore
this._ethStore.addAccount(ethUtil.addHexPrefix(address))
// add to identities
const defaultLabel = 'Wallet ' + (i + 1)
const defaultLabel = 'Account ' + (i + 1)
const nickname = configManager.nicknameForWallet(address)
var identity = {
name: nickname || defaultLabel,