thirdParty fix

This commit is contained in:
Sebastiaan Pasma 2018-08-10 12:07:24 +02:00
commit e4c5da0d44
No known key found for this signature in database
GPG key ID: 9A2B0C8B95A1D26F

View file

@ -447,7 +447,7 @@ angular.module('copayApp.services').factory('incomingData', function($log, $stat
amount: thirdPartyData.amount, amount: thirdPartyData.amount,
toAddress: thirdPartyData.toAddress, toAddress: thirdPartyData.toAddress,
coin: coin, coin: coin,
thirdParty: JSON.stringify(thirdPartyData) thirdParty: thirdPartyData
}; };
// fee // fee
@ -455,6 +455,8 @@ angular.module('copayApp.services').factory('incomingData', function($log, $stat
stateParams.requiredFeeRate = thirdPartyData.requiredFeeRate * 1024; stateParams.requiredFeeRate = thirdPartyData.requiredFeeRate * 1024;
} }
sendFlowService.pushState(thirdPartyData);
scannerService.pausePreview(); scannerService.pausePreview();
$state.go('tabs.send', {}, { $state.go('tabs.send', {}, {
'reload': true, 'reload': true,