Fix transfer to another wallet
This commit is contained in:
parent
7d64827616
commit
1bf879e08a
1 changed files with 3 additions and 1 deletions
|
|
@ -76,6 +76,7 @@ angular.module('copayApp.controllers').controller('tabSendController', function(
|
||||||
color: v.color,
|
color: v.color,
|
||||||
name: v.name,
|
name: v.name,
|
||||||
recipientType: 'wallet',
|
recipientType: 'wallet',
|
||||||
|
coin: v.coin,
|
||||||
getAddress: function(cb) {
|
getAddress: function(cb) {
|
||||||
walletService.getAddress(v, false, cb);
|
walletService.getAddress(v, false, cb);
|
||||||
},
|
},
|
||||||
|
|
@ -186,7 +187,8 @@ angular.module('copayApp.controllers').controller('tabSendController', function(
|
||||||
toAddress: addr,
|
toAddress: addr,
|
||||||
toName: item.name,
|
toName: item.name,
|
||||||
toEmail: item.email,
|
toEmail: item.email,
|
||||||
toColor: item.color
|
toColor: item.color,
|
||||||
|
coin: item.coin
|
||||||
})
|
})
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue