Fix transfer to another wallet

This commit is contained in:
Gustavo Maximiliano Cortez 2017-08-30 16:51:24 -03:00
commit 1bf879e08a
No known key found for this signature in database
GPG key ID: 15EDAD8D9F2EB1AF

View file

@ -76,6 +76,7 @@ angular.module('copayApp.controllers').controller('tabSendController', function(
color: v.color,
name: v.name,
recipientType: 'wallet',
coin: v.coin,
getAddress: function(cb) {
walletService.getAddress(v, false, cb);
},
@ -186,7 +187,8 @@ angular.module('copayApp.controllers').controller('tabSendController', function(
toAddress: addr,
toName: item.name,
toEmail: item.email,
toColor: item.color
toColor: item.color,
coin: item.coin
})
});
});