some connection in intermediate screen

This commit is contained in:
Manuel Araoz 2014-08-18 12:46:51 -04:00
commit 652726dbe9
3 changed files with 6 additions and 2 deletions

View file

@ -633,7 +633,9 @@ Wallet.prototype.sendReject = function(ntxid) {
});
};
Wallet.prototype.sendWalletReady = function(recipients) {
preconditions.checkArgument(recipients);
this.log('### SENDING WalletReady TO:', recipients);
this.send(recipients, {

View file

@ -268,7 +268,8 @@ WalletFactory.prototype.joinCreateSession = function(secret, nickname, passphras
data.opts.passphrase = passphrase;
data.opts.id = data.walletId;
var w = self.create(data.opts);
w.seedCopayer(s.pubKey);
w.sendWalletReady(s.pubKey);
//w.seedCopayer(s.pubKey);
return cb(null, w);
}
});