Browse Source

.

activeAddress
Ivan Socolsky 10 years ago
parent
commit
4cc20d682c
  1. 2
      lib/server.js

2
lib/server.js

@ -41,6 +41,8 @@ function CopayServer(opts) {
CopayServer.prototype.createWallet = function (opts, cb) {
var self = this;
// TODO: validate opts.pubKey is valid and belongs to opts.network
self.storage.fetchWallet(opts.id, function (err, wallet) {
if (err) return cb(err);
if (wallet) return cb('Wallet already exists');

Loading…
Cancel
Save