Remove argument destructuring

feature/default_network_editable
Dan Finlay 9 years ago
parent f730f6e0d8
commit 39160d3025
  1. 2
      app/manifest.json
  2. 4
      app/scripts/lib/idStore.js

@ -1,6 +1,6 @@
{
"name": "__MSG_appName__",
"version": "1.1.1",
"version": "1.1.2",
"manifest_version": 2,
"description": "__MSG_appDescription__",
"icons": {

@ -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

Loading…
Cancel
Save