Merge pull request #200 from colkito/fix/wallet-form-obj

fixed errors to import/open wallets
This commit is contained in:
Matias Alejo Garcia 2014-04-28 11:32:28 -03:00
commit a53d5292a7
1 changed files with 8 additions and 6 deletions

View File

@ -79,14 +79,16 @@ WalletFactory.prototype.read = function(walletId) {
if (! this._checkRead(walletId))
return false;
var obj = {};
var s = this.storage;
var opts = s.get(walletId, 'opts');
opts.id = walletId;
opts.publicKeyRing = s.get(walletId, 'publicKeyRing');
opts.txProposals = s.get(walletId, 'txProposals');
opts.privateKey = s.get(walletId, 'privateKey');
w = this.formObj(opts);
obj.id = walletId;
obj.opts = s.get(walletId, 'opts');
obj.publicKeyRing = s.get(walletId, 'publicKeyRing');
obj.txProposals = s.get(walletId, 'txProposals');
obj.privateKey = s.get(walletId, 'privateKey');
var w = this.fromObj(obj);
return w;
};