Merge pull request #57 from cmgustavo/matias/feature/swipe

support for wallets 1-1
This commit is contained in:
Matias Alejo Garcia 2014-10-30 16:47:10 -03:00
commit 0bf30a70aa

View file

@ -127,6 +127,13 @@ firstWallet.updateIndexes(function() {
firstWallet.createTx(destAddr, amount, '', {}, function(err, ntxid) {
console.log('\n\t### Tx Proposal Created... With copayer 0 signature.');
if (requiredCopayers ===1) {
firstWallet.sendTx(ntxid, function(txid) {
console.log('\t ####### SENT TXID:', txid);
process.exit(1);
});
}
var l = w.length;
_.each(w, function(dummy, i) {
console.log('\t Signing with copayer', i + 1);