diff options
Diffstat (limited to 'app/scripts/lib/idStore.js')
-rw-r--r-- | app/scripts/lib/idStore.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/app/scripts/lib/idStore.js b/app/scripts/lib/idStore.js index f0e566e5e..acd34074b 100644 --- a/app/scripts/lib/idStore.js +++ b/app/scripts/lib/idStore.js @@ -268,7 +268,9 @@ IdentityStore.prototype._createFirstWallet = function(entropy, derivedKey) { return keyStore } -function IdManagement( opts = { keyStore: null, derivedKey: null, hdPathString: null } ) { +function IdManagement(opts) { + if (!opts) opts = {} + this.keyStore = opts.keyStore this.derivedKey = opts.derivedKey this.hdPathString = opts.hdPathString |