Browse Source

update error message

activeAddress
Matias Alejo Garcia 10 years ago
parent
commit
ae2ec61de6
  1. 2
      lib/server.js

2
lib/server.js

@ -128,7 +128,7 @@ WalletService.prototype.createWallet = function(opts, cb) {
return acb();
self.storage.fetchWallet(opts.id, function(err, wallet) {
if (wallet) return acb(new ClientError('Wallet already exists'));
if (wallet) return acb(new ClientError('WEXISTS', 'Wallet already exists'));
return acb(err);
});
},

Loading…
Cancel
Save