shapeshift add the toAddress in the tx. Sending works.

This commit is contained in:
Jean-Baptiste Dominguez 2018-08-07 15:02:29 +09:00
commit 91487cf74c

View file

@ -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';
}); });