Fix #269: save wallet when restoring a backup

This commit is contained in:
Gustavo Cortez 2014-05-05 16:32:36 -03:00
commit b7ed2798fb

View file

@ -65,6 +65,8 @@ WalletFactory.prototype.fromObj = function(obj) {
}
this.log('### WALLET OPENED:', w.id);
// store imported wallet
w.store();
return w;
};