aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/accounts/index.js
diff options
context:
space:
mode:
authorKevin Serrano <kevgagser@gmail.com>2016-10-24 07:21:11 +0800
committerKevin Serrano <kevgagser@gmail.com>2016-10-24 07:21:11 +0800
commit16e2f029d8b76e6f1e951d35307d955c2346cd8d (patch)
tree645d3b227f6323e0339f68eb1d36529a6efc4761 /ui/app/accounts/index.js
parentb99b5484fec53629a25e9a3e2b4d43f1b1bc7e34 (diff)
parent152419a79bd26d9b6f5af43c2066eb1e6f619716 (diff)
downloadtangerine-wallet-browser-16e2f029d8b76e6f1e951d35307d955c2346cd8d.tar.gz
tangerine-wallet-browser-16e2f029d8b76e6f1e951d35307d955c2346cd8d.tar.zst
tangerine-wallet-browser-16e2f029d8b76e6f1e951d35307d955c2346cd8d.zip
Merge branch 'i328-MultiVault' of github.com:MetaMask/metamask-plugin into i328-MultiVault
Diffstat (limited to 'ui/app/accounts/index.js')
-rw-r--r--ui/app/accounts/index.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/ui/app/accounts/index.js b/ui/app/accounts/index.js
index 7551c498e..92054f24d 100644
--- a/ui/app/accounts/index.js
+++ b/ui/app/accounts/index.js
@@ -87,7 +87,7 @@ AccountsScreen.prototype.render = function () {
h('div.footer.hover-white.pointer', {
key: 'reveal-account-bar',
onClick: () => {
- this.onRevealAccount()
+ this.addNewKeyring()
},
style: {
display: 'flex',
@@ -146,8 +146,8 @@ AccountsScreen.prototype.onShowDetail = function (address, event) {
this.props.dispatch(actions.showAccountDetail(address))
}
-AccountsScreen.prototype.onRevealAccount = function () {
- this.props.dispatch(actions.revealAccount())
+AccountsScreen.prototype.addNewKeyring = function () {
+ this.props.dispatch(actions.addNewKeyring('Simple Key Pair'))
}
AccountsScreen.prototype.goHome = function () {