simple return

This commit is contained in:
Javier 2016-12-19 11:25:03 -03:00
parent c6faadd53f
commit 1a17046760
1 changed files with 1 additions and 12 deletions

View File

@ -140,18 +140,7 @@ angular.module('copayApp.services').factory('walletService', function($log, $tim
wallet.getStatus({
twoStep: true
}, function(err, ret) {
if (err) {
if (err instanceof errors.NOT_AUTHORIZED)
return cb('WALLET_NOT_REGISTERED');
if (err instanceof errors.CONNECTION_ERROR)
return cb('CONNECTION_ERROR');
if (err instanceof errors.NOT_FOUND)
return cb('NOT_FOUND');
return cb(err);
}
if (err) return cb(err);
return cb(null, ret);
});
};