aboutsummaryrefslogtreecommitdiffstats
path: root/app/scripts/lib/idStore.js
diff options
context:
space:
mode:
authorKevin Serrano <kevgagser@gmail.com>2016-11-22 07:49:03 +0800
committerKevin Serrano <kevgagser@gmail.com>2016-11-22 07:49:03 +0800
commit9123e70434fcd35dcb79a587e6d5c00734cb99e4 (patch)
tree0abefc76caf95f051fcaed3235fea1b8c81ae5ea /app/scripts/lib/idStore.js
parent7cf6e372eb38a0ab2abd8256f6fc714855b63aef (diff)
downloadtangerine-wallet-browser-9123e70434fcd35dcb79a587e6d5c00734cb99e4.tar
tangerine-wallet-browser-9123e70434fcd35dcb79a587e6d5c00734cb99e4.tar.gz
tangerine-wallet-browser-9123e70434fcd35dcb79a587e6d5c00734cb99e4.tar.bz2
tangerine-wallet-browser-9123e70434fcd35dcb79a587e6d5c00734cb99e4.tar.lz
tangerine-wallet-browser-9123e70434fcd35dcb79a587e6d5c00734cb99e4.tar.xz
tangerine-wallet-browser-9123e70434fcd35dcb79a587e6d5c00734cb99e4.tar.zst
tangerine-wallet-browser-9123e70434fcd35dcb79a587e6d5c00734cb99e4.zip
Remove entropy from encryption and project.
Diffstat (limited to 'app/scripts/lib/idStore.js')
-rw-r--r--app/scripts/lib/idStore.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/app/scripts/lib/idStore.js b/app/scripts/lib/idStore.js
index b73652af5..e5861c0ca 100644
--- a/app/scripts/lib/idStore.js
+++ b/app/scripts/lib/idStore.js
@@ -44,7 +44,7 @@ function IdentityStore (opts = {}) {
// public
//
-IdentityStore.prototype.createNewVault = function (password, entropy, cb) {
+IdentityStore.prototype.createNewVault = function (password, cb) {
delete this._keyStore
var serializedKeystore = this.configManager.getWallet()
@@ -53,7 +53,7 @@ IdentityStore.prototype.createNewVault = function (password, entropy, cb) {
}
this.purgeCache()
- this._createVault(password, null, entropy, (err) => {
+ this._createVault(password, null, (err) => {
if (err) return cb(err)
this._autoFaucet()
@@ -77,7 +77,7 @@ IdentityStore.prototype.recoverSeed = function (cb) {
IdentityStore.prototype.recoverFromSeed = function (password, seed, cb) {
this.purgeCache()
- this._createVault(password, seed, null, (err) => {
+ this._createVault(password, seed, (err) => {
if (err) return cb(err)
this._loadIdentities()
@@ -497,7 +497,7 @@ IdentityStore.prototype.tryPassword = function (password, cb) {
})
}
-IdentityStore.prototype._createVault = function (password, seedPhrase, entropy, cb) {
+IdentityStore.prototype._createVault = function (password, seedPhrase, cb) {
const opts = {
password,
hdPathString: this.hdPathString,