better status while incomplete

This commit is contained in:
Matias Alejo Garcia 2015-02-18 17:14:56 -03:00
parent 017305f217
commit c4d97243e1
1 changed files with 13 additions and 2 deletions

View File

@ -85,13 +85,24 @@ API.prototype._tryToComplete = function(data, cb) {
};
API.prototype._loadAndCheck = function(cb) {
API.prototype._load = function(cb) {
var self = this;
this.storage.load(function(err, data) {
if (err || !data) {
return cb(err || 'Wallet file not found.');
}
return cb(null, data);
});
};
API.prototype._loadAndCheck = function(cb) {
var self = this;
this._load(function(err, data) {
if (err) return cb(err);
if (data.n > 1) {
var pkrComplete = data.publicKeyRing && data.m && data.publicKeyRing.length === data.n;
@ -274,7 +285,7 @@ API.prototype.joinWallet = function(secret, copayerName, cb) {
API.prototype.getStatus = function(cb) {
var self = this;
this._loadAndCheck(function(err, data) {
this._load(function(err, data) {
if (err) return cb(err);
var url = '/v1/wallets/';