shapeshift add the toAddress in the tx. Sending works.
This commit is contained in:
parent
886204d8b0
commit
91487cf74c
1 changed files with 2 additions and 4 deletions
|
|
@ -111,9 +111,7 @@ function reviewController(addressbookService, bitcoinCashJsService, bitcore, bit
|
||||||
}
|
}
|
||||||
|
|
||||||
vm.approve = function() {
|
vm.approve = function() {
|
||||||
|
|
||||||
if (vm.thirdParty.id === 'shapeshift')
|
|
||||||
return;
|
|
||||||
if (!tx || !vm.originWallet) return;
|
if (!tx || !vm.originWallet) return;
|
||||||
|
|
||||||
if (vm.paymentExpired) {
|
if (vm.paymentExpired) {
|
||||||
|
|
@ -491,7 +489,7 @@ function reviewController(addressbookService, bitcoinCashJsService, bitcore, bit
|
||||||
$ionicLoading.hide();
|
$ionicLoading.hide();
|
||||||
shapeshiftService.shiftIt(vm.originWallet.coin, toWallet.coin, withdrawalAddr, returnAddr, function onShiftIt(shapeshiftData) {
|
shapeshiftService.shiftIt(vm.originWallet.coin, toWallet.coin, withdrawalAddr, returnAddr, function onShiftIt(shapeshiftData) {
|
||||||
vm.memo = 'ShapeShift Order:\nhttps://www.shapeshift.io/#/status/' + shapeshiftData.orderId;
|
vm.memo = 'ShapeShift Order:\nhttps://www.shapeshift.io/#/status/' + shapeshiftData.orderId;
|
||||||
toAddress = shapeshiftData.toAddress;
|
tx.toAddress = shapeshiftData.toAddress;
|
||||||
vm.destination.address = toAddress;
|
vm.destination.address = toAddress;
|
||||||
vm.destination.kind = 'shapeshift';
|
vm.destination.kind = 'shapeshift';
|
||||||
});
|
});
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue