Sending BIP70 payments.
This commit is contained in:
parent
7d1fff424a
commit
38852d32d4
2 changed files with 8 additions and 4 deletions
|
|
@ -365,7 +365,8 @@ function amountController(configService, $filter, gettextCatalog, $ionicHistory,
|
|||
vm.alternativeAmount = txFormatService.formatAmount(amountInSatoshis, true);
|
||||
vm.allowSend = lodash.isNumber(a)
|
||||
&& a > 0
|
||||
&& (a >= vm.minAmount && a <= vm.maxAmount)
|
||||
&& (!vm.minAmount || a >= vm.minAmount)
|
||||
&& (!vm.maxAmount || a <= vm.maxAmount)
|
||||
&& !vm.fundsAreInsufficient;
|
||||
} else {
|
||||
if (result) {
|
||||
|
|
@ -385,7 +386,8 @@ function amountController(configService, $filter, gettextCatalog, $ionicHistory,
|
|||
vm.alternativeAmount = $filter('formatFiatAmount')(toFiat(result));
|
||||
vm.allowSend = lodash.isNumber(result)
|
||||
&& result > 0
|
||||
&& (result >= vm.minAmount && result <= vm.maxAmount)
|
||||
&& (!vm.minAmount || result >= vm.minAmount)
|
||||
&& (!vm.maxAmount || result <= vm.maxAmount)
|
||||
&& !vm.fundsAreInsufficient;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue