diff options
-rw-r--r-- | app/manifest.json | 2 | ||||
-rw-r--r-- | app/scripts/lib/idStore.js | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/app/manifest.json b/app/manifest.json index cc0fdbd5a..c383ef6b7 100644 --- a/app/manifest.json +++ b/app/manifest.json @@ -1,6 +1,6 @@ { "name": "__MSG_appName__", - "version": "1.1.1", + "version": "1.1.2", "manifest_version": 2, "description": "__MSG_appDescription__", "icons": { 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 |